*** 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

13
lang/basic/test/opg5.b Normal file
View File

@@ -0,0 +1,13 @@
10 rem find largest number (57)
20 read l
30 let r=0
40 for z=1 to l
50 read a
60 if a<=r then 80
70 let r=a
80 next z
90 print "largest number is",r
100 data 10
110 data 106, 42,-12,111,88,91,3,263,-1042,7
120 end