game.title = "Code Test"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.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 <> { setup { hello(); display("situation"); exit(); } enter { } }