home *** CD-ROM | disk | FTP | other *** search
/ Media Share 9 / MEDIASHARE_09.ISO / basic / sortsubs.zip / AFTER.BAS next >
BASIC Source File  |  1993-07-11  |  902b  |  37 lines

  1. cls
  2. print "This is the main part"
  3. print "of the program."
  4. end
  5. 'This is a rem line between SUBs
  6. 'This is a rem line at the end of the program.
  7.  
  8. '------------------------------------------------------------------------------
  9. function alpha
  10. end function
  11.  
  12. '------------------------------------------------------------------------------
  13. function beta
  14. print "test"
  15. end function
  16.  
  17. '------------------------------------------------------------------------------
  18. sub dandysub
  19. rem dandy subroutine
  20. end sub
  21.  
  22. '------------------------------------------------------------------------------
  23. sub test1
  24. rem this is a test
  25. end sub
  26.  
  27. '------------------------------------------------------------------------------
  28. function weirdfunction
  29. 'do nothing
  30. 'now
  31. end function
  32.  
  33. '------------------------------------------------------------------------------
  34. sub xray
  35. 'do nothing here too
  36. end sub
  37.