game.title = "Demo game"; game.author = "Mike Buland"; game.version = 1; game.revision = 0; game.start = <>; global { command: "eat" object { display(object); } } function sillyDisplay( txt, extra ) { display("!~! " + txt + " !~!"); if extra then { display("And then some extra!"); } else { display("...no extra for you"); } } situation <> { setup { name = "Bob"; name += " The Man"; display("This is the setup phase for start, " + name); display( 5 <= 1 ); display( 1 <= 1 ); display( 0 <= 1 ); sillyDisplay( "Hello", true ); if name == "Bob The Man" then { display("You are bob"); } } enter { display('''This is the enter part of the start situation'''); } } situation <> { enter { display('''Entered stuff'''); } }