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.
 
 
 
 
 
 

18 lines
300 B

  1. Sub Prior
  2. Print "This is a subroutine prior to MAIN."
  3. Print "This should not print."
  4. End Sub
  5. Sub Main
  6. Print "This is the MAIN subroutine."
  7. Print "This should print."
  8. End Sub
  9. Sub Subsequent
  10. Print "This is a subroutine subsequent to MAIN."
  11. Print "This should not print."
  12. End Sub