File: testsuite_remark_include.kbs

package info (click to toggle)
basic256 2.0.99.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 6,888 kB
  • sloc: cpp: 17,185; yacc: 4,025; lex: 1,466; java: 1,091; sh: 39; xml: 33; makefile: 20
file content (48 lines) | stat: -rw-r--r-- 664 bytes parent folder | download | duplicates (2)
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)