home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
3D Game Programming for Teens (2nd Edition)
/
3DGPFT2E.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
|
2009-01-21
|
273 b
|
16 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
;Delay five seconds
Delay 5000
;FUNCTION CALLME()
;sets x to 314
Function CallMe()
x = 314
End Function