home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Game Programming for Teens
/
GameProgrammingForTeens.iso
/
Source
/
chapter03
/
demo03-07.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
|
247 b
|
14 lines
;demo03-07.bb - Fixed CallMe()
Global x
;call CallMe() function
CallMe()
;concatenate "x is equal to" and the variable x
Print "x is equal to " + x
WaitKey
;FUNCTION CALLME()
;sets x to 314
Function CallMe()
x = 314
End Function