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
/
tables_4.gm
tables_4.gm
92 B
History
Raw
1
2
3
4
5
6
7
8
fruits = table ( "apple", "pear", "orange" );
foreach ( frt in fruits )
{
print(frt);
}