*** empty log message ***

This commit is contained in:
em
1985-01-24 11:27:36 +00:00
parent 7657fb8d45
commit a1c27b46db
51 changed files with 863 additions and 0 deletions

15
lang/basic/test/test19.b Normal file
View File

@@ -0,0 +1,15 @@
100 read a
110 print a
120 restore
130 read b
140 print b
142 restore
143 restore 170
144 read b,c
145 print b,c
146 print "try to read beyond eof"
147 read d
148 print d
150 data 6
170 data 8,9
180 end