You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: docs/index.html
+13-13Lines changed: 13 additions & 13 deletions
Original file line number
Diff line number
Diff line change
@@ -7,55 +7,55 @@ <h2>Boot process</h2>
7
7
<h2>Command set</h2>
8
8
<p>ParseBasic has a very basic command set. They usually follow this syntax: <b>COMMAND arg1 arg2 ... ;</b> Make sue that the command is ALWAYS in caps. Otherwise you will recieve a tokenizer error.</p>
9
9
<hr>
10
-
<h3>PRINT</h3>
10
+
<h3>PRINT (v0.1.0- )</h3>
11
11
<p>Syntax: <b>PRINT "string to write";</b></p>
12
12
<p>Notes: </p>
13
13
<hr>
14
-
<h3>NEWPRINT</h3>
14
+
<h3>NEWPRINT (v0.1.0- )</h3>
15
15
<p>Syntax: <b>NEWPRINT;</b></p>
16
16
<p>Notes: Creates a new line in output.</p>
17
17
<hr>
18
-
<h3>WAIT</h3>
18
+
<h3>WAIT (v0.1.0- )</h3>
19
19
<p>Syntax: <b>WAIT int;</b></p>
20
20
<p>Notes: <b>int</b> is in millisecods.</p>
21
21
<hr>
22
-
<h3>CREATESWAP</h3>
22
+
<h3>CREATESWAP (v0.1.0- )</h3>
23
23
<p>Syntax: <b>CREATESWAP;</b></p>
24
24
<p>Notes: This is emulated in the ParseBasic x86-64 interpreter. This creates the SWAP folder (if it doesn't already exist).</p>
25
25
<hr>
26
-
<h3>IO</h3>
26
+
<h3>IO (v0.1.0- )</h3>
27
27
<p>Syntax: <b>IO int1 int2;</b></p>
28
28
<p>Notes: int1 is the port, int2 is the status (high or low).</p>
29
29
<hr>
30
-
<h3>NEW</h3>
30
+
<h3>NEW (v0.1.0- )</h3>
31
31
<p>Syntax: <b>NEW string1 string2;</b></p>
32
32
<p>Notes: string1 is the name of the variable to create. string2 is the initial value.</p>
33
33
<hr>
34
-
<h3>DELETE</h3>
34
+
<h3>DELETE (v0.1.0- )</h3>
35
35
<p>Syntax: <b>DELETE string;</b></p>
36
36
<p>Notes: string is the name of variable to delete.</p>
37
37
<hr>
38
-
<h3>SET</h3>
38
+
<h3>SET (v0.1.0- )</h3>
39
39
<p>Syntax: <b>SET string1 string2;</b></p>
40
40
<p>Notes: string1 is name of variable. string2 is value to set.</p>
41
41
<hr>
42
-
<h3>EXTLOAD</h3>
42
+
<h3>EXTLOAD (v0.1.0- )</h3>
43
43
<p>Syntax: <b>EXTLOAD string;</b></p>
44
44
<p>Notes: string is file path to .pba file relative to the (emulated) SD root.</p>
45
45
<hr>
46
-
<h3>FILEWRITE</h3>
46
+
<h3>FILEWRITE (v0.1.0- )</h3>
47
47
<p>Syntax: <b>FILEWRITE string1 string2;</b></p>
48
48
<p>Notes: string1 is file to write to relative to the (emulated) SD root. string2 is the string to write.</p>
49
49
<hr>
50
-
<h3>FILEREAD</h3>
50
+
<h3>FILEREAD (v0.1.0- )</h3>
51
51
<p>Syntax: <b>FILEREAD string1 string2;</b></p>
52
52
<p>Notes: string1 is file to read from relative to the (emulated) SD root. string2 is the name of the variable to write the read buffer to.</p>
53
53
<hr>
54
-
<h3>FILERM</h3>
54
+
<h3>FILERM (v0.1.0- )</h3>
55
55
<p>Syntax: <b>FILERM string1;</b></p>
56
56
<p>Notes: string1 is the name of the file to delete relative to the (emulated) SD root.</p>
0 commit comments