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.
 
 
 
 
 
 

13 lines
336 B

  1. 10 REM 'DEFSNG' TEST PROGRAM
  2. 20 REM USES DOUBLE PRECISION DECLARATION CHARACTER '#'
  3. 30 DEFSNG A,B
  4. 40 A=1.234567890123456
  5. 50 B#=1.234567890123456
  6. 60 IF A=B# THEN 110
  7. 70 PRINT "A =";A
  8. 80 PRINT "B#=";B#
  9. 90 PRINT "THE TEST PASSED WITH # OVER-RIDING DEFSNG"
  10. 100 GOTO 999
  11. 110 PRINT "THE # CHARACTER OVER-RIDE FEATURE FAILED THE TEST"
  12. 999 END