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:
91dba617b3
Branches
Tags
master
GameMonkeyScrip...
/
gmsrc
/
doc
/
tutorial
/
1-intro
/
scripts
/
loops_2.gm
loops_2.gm
68 B
History
Raw
1
2
3
4
5
6
7
8
it = 0;
while (it <= 10)
{
print( "it = ", it );
it = it + 1;
}