blob: c242a44835f70d01de1ce10891243e6f71ad11e1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
game.title = "Demo game";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;
global
{
}
function hello( a, b, c )
{
bob = 5 + 55 * 2 + 1;
}
|