game.title = "Code Test"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "exit" { exit(); } } situation <> { setup { global.stuff = {'count': 1}; global.stuff['count'] += 5; display( global.stuff['count'] ); exit(); } enter { } }