option situation <<start>>
{
	option: "Begin the game"
	{
		display("the game has begun.");
	}

	option: "I'm not ready yet"
	{
		display("Yup, that's what I thought.");
	}

	option: "Quit the game"
	{
		display("Ok...fine...");
		exit();
	}
}