home *** CD-ROM | disk | FTP | other *** search
/ HyperLib 1997 Winter - Disc 1 / HYPERLIB-1997-Winter-CD1.ISO.7z / HYPERLIB-1997-Winter-CD1.ISO / オンラインウェア / PRG / bwbasic-2.10.sit / bwbasic-2.10 / bwbtest / main.bas < prev    next >
BASIC Source File  |  1993-11-09  |  300b  |  18 lines

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