9 lines
310 B
QBasic
9 lines
310 B
QBasic
|
|
10 REM The standalone driver lends the script no graphics device.
|
||
|
|
20 REM COLOR, LOCATE and SCALE only touch interpreter state and must still work.
|
||
|
|
30 COLOR 1, 3
|
||
|
|
40 LOCATE 40, 50
|
||
|
|
50 SCALE 1, 640, 400
|
||
|
|
60 PRINT "STATE VERBS OK"
|
||
|
|
70 REM DRAW needs the device, and has to say which verb wanted it.
|
||
|
|
80 DRAW 1, 10, 10
|