blob: c2d9e1f75bbbe45c4426b226a07f3bd978ff2c77 (
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
|
game.start = <<a>>;
situation <<a>>
{
setup
{
x = 3;
my_fun( x );
display("About to end" + x);
exit();
}
}
function my_fun( a )
{
display( a );
return();
display( "hello" );
}
|