File: input.bas

package info (click to toggle)
bwbasic 2.20pl2-8
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k
  • size: 1,204 kB
  • ctags: 1,248
  • sloc: ansic: 21,002; makefile: 116
file content (7 lines) | stat: -rw-r--r-- 207 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
10 REM INPUT.BAS -- Test INPUT Statement 
20 PRINT "INPUT.BAS -- Test INPUT Statement" 
30 REM 
40 INPUT "Input string, number: "; s$, n 
50 PRINT "The string is: ";s$ 
60 PRINT "The number is: ";n 
70 END