summaryrefslogtreecommitdiff
path: root/test.stage
blob: a1c6ab3923b285395789d8664bab89dc3a406fb1 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28

game.title = "Demo game";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;

global
{
}

function hello( a, b, c )
{
	joe = a;
	if b < c then
	{
		sam = b * c + 1;
	}
	else if something <= c then
	{
		x * 43;
	}
	while true do
	{
		bob = 5 + 55 * 2 + 1;
	}
}