initial commit
This commit is contained in:
commit
1f4f58b3fb
11 changed files with 313 additions and 0 deletions
1
examples/basic_1.basic
Normal file
1
examples/basic_1.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT 1
|
||||
1
examples/basic_2.basic
Normal file
1
examples/basic_2.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT (1+2)
|
||||
5
examples/calc_1.basic
Normal file
5
examples/calc_1.basic
Normal file
|
|
@ -0,0 +1,5 @@
|
|||
LET A BE 0
|
||||
WHILE NOT A DO
|
||||
PRINT A
|
||||
LET A BE A+1
|
||||
ENDWHILE
|
||||
1
examples/hello_world.basic
Normal file
1
examples/hello_world.basic
Normal file
|
|
@ -0,0 +1 @@
|
|||
PRINT "Hello World"
|
||||
Loading…
Add table
Add a link
Reference in a new issue