game.title = "Code Test"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "exit" { exit(); } } situation <> { setup { x = 10; display( x ); x /= 2; display( x ); x *= 4; display( x ); x -= 10; display( x ); x += 20; display( x ); exit(); } enter { } }