Data commit
This commit is contained in:
parent
7387c8f97b
commit
cb5bb5e222
199093 changed files with 3378972 additions and 0 deletions
6
Task/Boolean-values/Run-BASIC/boolean-values.basic
Normal file
6
Task/Boolean-values/Run-BASIC/boolean-values.basic
Normal file
|
|
@ -0,0 +1,6 @@
|
|||
if 1 then print "1 is true"
|
||||
if not(0) then print "0 is false"
|
||||
if 1 < 2 then print "1 < 2 TRUE"
|
||||
if 2 > 1 then print "2 > 1 TRUE"
|
||||
if not(2 < 1) then print "2 not < 1"
|
||||
if not(1 = 0) then print "1 not = 0"
|
||||
Loading…
Add table
Add a link
Reference in a new issue