File: testsuite_print_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 (20 lines) | stat: -rw-r--r-- 407 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
# testsuite_print_include section for BASIC256

# Modification History
# date		programmer	description
# 20200421	j.m.reneau	original coding

currentsuite = "print"

# test console print statements

print "---";
? "+++";
print "---";
?
call q("Did the program print '---+++---' on a single line?")

for t = 0 to 5
	print t,t/2,t*2
next t
call q("Did the program print 6 rows 3 columns of 0-5, 0-2.5, 0-10?")