ChipMaster's bwBASIC
This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- 10 REM 'DEFSNG' TEST PROGRAM
- 20 REM USES DOUBLE PRECISION DECLARATION CHARACTER '#'
- 30 DEFSNG A,B
- 40 A=1.234567890123456
- 50 B#=1.234567890123456
- 60 IF A=B# THEN 110
- 70 PRINT "A =";A
- 80 PRINT "B#=";B#
- 90 PRINT "THE TEST PASSED WITH # OVER-RIDING DEFSNG"
- 100 GOTO 999
- 110 PRINT "THE # CHARACTER OVER-RIDE FEATURE FAILED THE TEST"
- 999 END
|