This website works better with JavaScript
Home
Explore
Help
Sign In
cpp
/
GameMonkeyScript
mirror of
https://github.com/publicrepo/gmscript.git
Watch
2
Star
0
Fork
0
Files
Issues
0
Wiki
Tree:
10dd9716bf
Branches
Tags
master
GameMonkeyScrip...
/
gmsrc
/
doc
/
tutorial
/
1-intro
/
scripts
/
functions_1.gm
functions_1.gm
90 B
History
Raw
1
2
3
4
5
6
myMultiply = function( x, y ) { return x * y; };
a = myMultiply( 100, 2 );
print( a );