blob: b963b2b45da9053d798d1cb3e313ee9edb11288f (
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
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
game.title = "Code Test";
game.author = "Mike Buland";
game.version = 1;
game.revision = 0;
game.start = <<start>>;
global
{
command: "exit"
{
exit();
}
}
function subfunction()
{
if true then
{
return();
}
display("subfunction()");
}
function hello()
{
if true == true then
{
subfunction();
display("Yeah!");
return();
}
display("hello()");
}
situation <<start>>
{
setup
{
hello();
display("situation");
exit();
}
enter
{
}
}
|