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
|
# testsuite_remark_include section for BASIC256
# Modification History
# date programmer description
# 20140204 j.m.reneau added all of the various forms of remark
# test the various syntax issues of the remark statements
# actually does little to test - but must compile
currentsuite = "remark"
a = 0
rem a = 99
#a = 98
# a = 97
rem a = 99
#a = 98
# a = 97
b = 22 rem a=96
b = 22 #a=96
b = 22 # a=95
c = 33 #
c = 33 rem
b = 22 :rem a=96
b = 22 :#a=96
b = 22 :# a=95
c = 33 :#
c = 33 :rem
b = 22: rem a=96
b = 22: #a=96
b = 22: # a=95
c = 33: #
c = 33:rem
b = 22:rem a=96
b = 22:#a=96
b = 22:# a=95
c = 33:#
c = 33:rem
call n("remark test", a, 0)
|