game.title = "Code Test"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "exit" { exit(); } } function getVal() { global.stuff = {'hi': 5 }; } situation <> { setup { if true then { getVal(); } display( count( "global.stuff" ) ); } enter { } }