File: main.bas

package info (click to toggle)
bwbasic 2.20pl2-14
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 1,784 kB
  • sloc: ansic: 21,005; makefile: 80
file content (17 lines) | stat: -rw-r--r-- 300 bytes parent folder | download | duplicates (12)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17

Sub Prior
   Print "This is a subroutine prior to MAIN."
   Print "This should not print."
End Sub

Sub Main
   Print "This is the MAIN subroutine."
   Print "This should print."
End Sub

Sub Subsequent
   Print "This is a subroutine subsequent to MAIN."
   Print "This should not print."
End Sub