Skip to content

Commit 23a1e9b

Browse files
committed
Update index.html
Closes #37
1 parent c6afa42 commit 23a1e9b

1 file changed

Lines changed: 13 additions & 13 deletions

File tree

docs/index.html

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -7,55 +7,55 @@ <h2>Boot process</h2>
77
<h2>Command set</h2>
88
<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>
99
<hr>
10-
<h3>PRINT</h3>
10+
<h3>PRINT (v0.1.0- )</h3>
1111
<p>Syntax: <b>PRINT "string to write";</b></p>
1212
<p>Notes: </p>
1313
<hr>
14-
<h3>NEWPRINT</h3>
14+
<h3>NEWPRINT (v0.1.0- )</h3>
1515
<p>Syntax: <b>NEWPRINT;</b></p>
1616
<p>Notes: Creates a new line in output.</p>
1717
<hr>
18-
<h3>WAIT</h3>
18+
<h3>WAIT (v0.1.0- )</h3>
1919
<p>Syntax: <b>WAIT int;</b></p>
2020
<p>Notes: <b>int</b> is in millisecods.</p>
2121
<hr>
22-
<h3>CREATESWAP</h3>
22+
<h3>CREATESWAP (v0.1.0- )</h3>
2323
<p>Syntax: <b>CREATESWAP;</b></p>
2424
<p>Notes: This is emulated in the ParseBasic x86-64 interpreter. This creates the SWAP folder (if it doesn't already exist).</p>
2525
<hr>
26-
<h3>IO</h3>
26+
<h3>IO (v0.1.0- )</h3>
2727
<p>Syntax: <b>IO int1 int2;</b></p>
2828
<p>Notes: int1 is the port, int2 is the status (high or low).</p>
2929
<hr>
30-
<h3>NEW</h3>
30+
<h3>NEW (v0.1.0- )</h3>
3131
<p>Syntax: <b>NEW string1 string2;</b></p>
3232
<p>Notes: string1 is the name of the variable to create. string2 is the initial value.</p>
3333
<hr>
34-
<h3>DELETE</h3>
34+
<h3>DELETE (v0.1.0- )</h3>
3535
<p>Syntax: <b>DELETE string;</b></p>
3636
<p>Notes: string is the name of variable to delete.</p>
3737
<hr>
38-
<h3>SET</h3>
38+
<h3>SET (v0.1.0- )</h3>
3939
<p>Syntax: <b>SET string1 string2;</b></p>
4040
<p>Notes: string1 is name of variable. string2 is value to set.</p>
4141
<hr>
42-
<h3>EXTLOAD</h3>
42+
<h3>EXTLOAD (v0.1.0- )</h3>
4343
<p>Syntax: <b>EXTLOAD string;</b></p>
4444
<p>Notes: string is file path to .pba file relative to the (emulated) SD root.</p>
4545
<hr>
46-
<h3>FILEWRITE</h3>
46+
<h3>FILEWRITE (v0.1.0- )</h3>
4747
<p>Syntax: <b>FILEWRITE string1 string2;</b></p>
4848
<p>Notes: string1 is file to write to relative to the (emulated) SD root. string2 is the string to write.</p>
4949
<hr>
50-
<h3>FILEREAD</h3>
50+
<h3>FILEREAD (v0.1.0- )</h3>
5151
<p>Syntax: <b>FILEREAD string1 string2;</b></p>
5252
<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>
5353
<hr>
54-
<h3>FILERM</h3>
54+
<h3>FILERM (v0.1.0- )</h3>
5555
<p>Syntax: <b>FILERM string1;</b></p>
5656
<p>Notes: string1 is the name of the file to delete relative to the (emulated) SD root.</p>
5757
<hr>
58-
<h3>END</h3>
58+
<h3>END (v0.1.0- )</h3>
5959
<p>Syntax: <b>END;</b></p>
6060
<p>Notes: Ends execution of the program.</p>
6161
<hr>

0 commit comments

Comments
 (0)