File size: 199 Bytes
a2a15a2
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
10 PRINT
20 PRINT "this is a string"
30 PRINT 10
40 A=10
50 PRINT A, 10
60 PRINT #3, A, 10, "end"
70 PRINT "the number is", A
80 PRINT "double of", A, "is", 2*A
90 PRINT "double of "; A; " is "; 2*A