File: term.bas

package info (click to toggle)
bwbasic 2.20pl2-11
  • links: PTS
  • area: main
  • in suites: buster, jessie, jessie-kfreebsd, stretch, wheezy
  • size: 1,236 kB
  • sloc: ansic: 21,001; makefile: 80
file content (10 lines) | stat: -rw-r--r-- 312 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
10 REM BWBASIC Program to Demonstrate Terminal-Specific Use 
20 REM The following definitions are for an ANSI Terminal. 
30 REM You may have to define different variables for your 
40 REM particular terminal 
50 REM 
60 LET CL$ = chr$(&h1b)+"[2J" 
70 PRINT CL$; 
80 PRINT " Bywater BASIC" 
90 INPUT c$ 
100 END