introvoyz041's picture
Migrated from GitHub
a2a15a2 verified
raw
history blame contribute delete
199 Bytes
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