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( x[4] ); x[4] = 112; display ('----'); for each i in x do { display( i ); } exit(); } enter { } }