- Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathvade.html
105 lines (105 loc) · 4.61 KB
/
vade.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
<!DOCTYPE html>
<htmllang="en">
<head>
<metacharset="utf-8">
<metahttp-equiv="X-UA-Compatible" content="IE=edge">
<metaname="viewport" content="width=device-width, initial-scale=1">
<title>SmallBASIC | vade</title>
<metaname="description" content="SmallBASIC | One more basic">
<linkrel="canonical" href="/vade.html">
<linkrel="keywords" href="vade">
<linkrel="stylesheet" href="/css/style.css">
<linkrel="icon" type="image/png" href="/images/sb-desktop-32x32.png">
<scriptsrc="/clipboard.js"></script>
</head>
<body>
<buttononclick="topFunction()" id="BackToTopBtn" title="Go to top">⯅</button>
<scriptsrc="/backtotop.js"></script>
<divclass="wrapAll clearfix">
<navclass="navigation">
<divclass="logo">
<ahref="/"><imgsrc='/images/sb-logo.png?v=2' alt="logo"></a>
</div>
<divclass="navlinks">
<ahref="/pages/download.html">Download</a>
<ahref="/pages/news.html">News</a>
<ahref="/pages/community.html">Community</a>
<aclass='active' href="/pages/articles.html">Resources</a>
<ahref="/pages/reference.html">Language Reference</a>
<ahref="/pages/guide.html">SmallBASIC Manual</a>
</div>
</nav>
<divclass="mainsection">
<divclass="tabs clearfix">
<divclass="tabsRight">
<atarget="_github" href="https://github.com/smallbasic/smallbasic.github.io/blob/master/_build/pages/vade.markdown">Edit</a>
<atarget="_github" href="https://github.com/smallbasic/smallbasic.github.io/commits/master/_build/pages/vade.markdown">History</a>
</div>
</div>
<divclass="article">
<h1id="vademecum">Vademecum</h1>
<blockquote>
<p>Written by Elmar Vogt, Fürth, GERMANY</p>
</blockquote>
<p>A <em>Vademecum</em> is a small booklet on a subject, meant to be
your handy companion. While not as exhaustive as a genuine reference
manual, it is designed to let you quickly find information on a certain
subject: This Vademecum omits some details and deprecated features of
for the sake of brevity, as it aims to help you find your way around
this elegant language in a friendly, trustworthy, and straightforward
manner.</p>
<divclass="contentsPanel">
<divclass="contentsHeader">
<p>Contents</p>
</div>
<ol>
<li><ahref="/pages/vade_intro.html">Intro</a></li>
<li><ahref="/pages/vade_syntax.html">Syntax</a></li>
<li><ahref="/pages/vade_data.html">Data</a></li>
<li><ahref="/pages/vade_control.html">Control Flow</a></li>
<li><ahref="/pages/vade_structure.html">Structure</a></li>
</ol>
</div>
<p>The process of preparing programs for a digital computer is
especially attractive because it not only can be economically and
scientifically rewarding, it can also be an aesthetic experience much
like composing poetry or music. – <spanclass="smallcaps">Donald F.
Knuth</span></p>
<p>Code: A set of symbol whose primary purpose is to restrict
comprehension. – <spanclass="smallcaps">Webster’s 3rd International
Dictionary</span></p>
<p>The most amazing achievement of the computer software industry is its
continuing cancellation of the steady and staggering gains made by the
computer hardware industry. – <spanclass="smallcaps">Henry
Petroski</span></p>
<p>It has been said that the great scientific disciplines are examples
of giants standing on the shoulders of other giants. It has also been
said that the software industry is an example of midgets standing on the
toes of other midgets. – <spanclass="smallcaps">Alan Cooper</span></p>
<p>That’s the thing about people who think they hate computers. What
they really hate is lousy programmers. – <spanclass="smallcaps">Larry
Niven</span></p>
<p>Measuring programming progress by lines of code is like measuring
aircraft building progress by weight. – <spanclass="smallcaps">Bill
Gates</span></p>
<p>Should array indices start at 0 or 1? My compromise of 0.5 was
rejected without, I thought, proper consideration. – <span
class="smallcaps">Stan Kelly-Bootle</span></p>
<p>Saying that Java is nice because it works on all OSes is like saying
that anal sex is nice because it works on all genders. – <span
class="smallcaps">Alanna</span></p>
<p>Always code as if the guy who ends up maintaining your code will be a
violent psychopath who knows where you live. – <span
class="smallcaps">Martin Golding</span></p>
</div>
<divclass="pagefooter">
This page was last edited on Sun, 25 Mar 2018 09:09:06 +1000
|
<ahref="https://en.wikipedia.org/wiki/Markdown" target="_blank" rel="nofollow">Markdown</a>
processed with
<ahref="https://pandoc.org/MANUAL.html#pandocs-markdown" target="_blank" rel="nofollow">pandoc 3.1.12.1</a>
</div>
</div>
</div>
</body>
</html>