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.
 
 
 
 
 
 

15 lines
1.1 KiB

  1. CallFunc.BAS -- Test BASIC User-defined Function Statements
  2. The next printed line should be from the Function.
  3. This is written from the Function.
  4. The value of variable <xarg> is 5
  5. The value of variable <yarg$> is Hello
  6. The value of variable <tvar> is 17
  7. The value of variable <tvar> is reset to 99
  8. The Function should return 104
  9. This is back at the main program.
  10. The value of variable <testvar> is now 17
  11. The returned value from the function is 104
  12. Did it work?