home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Programming for Teens
/
GameProgrammingForTeens.iso
/
Source
/
chapter02
/
demo02-10.bb
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Text File
|
2003-04-06
|
275 b
|
14 lines
;demo02-10.bb - Demonstrates the use of Goto
;Place a label
.label
Print "Hello"
;Does user want to repeat?
selection = Input("Enter 1 if you want me to repeat 'Hello' ==> ")
If (selection = 1)
;Go to the top and print hello again
Goto label
EndIf
End