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 / gotolabl.bas < prev    next >
BASIC Source File  |  1993-11-09  |  253b  |  23 lines

  1. Print "Hello"
  2.  
  3.  
  4. goto test_label
  5. Print "This should NOT print"
  6.  
  7.  
  8. test_label:
  9. gosub test_sub
  10. Print "Goodbye"
  11. End
  12.  
  13.  
  14. test_sub:
  15.    Print "This is the subroutine."
  16.    gosub test_subsub
  17.    Return
  18.  
  19.  
  20. test_subsub:
  21.    Print "This is the sub-subroutine."
  22.    Return
  23.