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
/
loops_1.gm
loops_1.gm
64 B
History
Raw
1
2
3
4
5
for (it = 0; it <= 10; it = it + 1)
{
print( "it = ", it );
}