game.title = "Code Test"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "exit" { exit(); } } situation <> { setup { stuff = {}; stuff['bob'] = {'joe': 'hi', 'sub': {1: 5, 2: 8} }; stuff['bob']['sub'][55] = "aoeu"; stuff['bob'] = 'hia'; stuff['joe'] = stuff['bob']; stuff['joe'] += 'aoeu'; display( stuff['bob']['sub'][55] ); exit(); } enter { } }