File: input.bas

package info (click to toggle)
bwbasic 2.20pl2-13
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye
  • size: 1,764 kB
  • sloc: ansic: 21,002; makefile: 80
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