ChipMaster's bwBASIC This also includes history going back to v2.10. *WARN* some binary files might have been corrupted by CRLF.
 
 
 
 
 
 

6 lines
159 B

  1. 500 rem ABS.BAS -- Test ABS() function
  2. 510 X = -1.23456789
  3. 520 ABSX = ABS( X )
  4. 530 print "The absolute value of "; X; " is"; ABSX
  5. 540 print "Is that correct?"