game.title = "Demo game"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "eat" object { display(object); } } situation <> { setup { name = "Bob"; display("This is the setup phase for start, " + name); display("???"); } enter { display('''This is the enter part of the start situation'''); } } situation <> { enter { display('''Entered stuff'''); } }