game.title = "Code Test"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "exit" { exit(); } } situation <> { setup { x = [5, 4, 3]; x = x + [[9, 8, 7]]; display( debugString( x ) ); exit(); } enter { } }