game.start = <<a>>;

situation <<a>>
{
	setup
	{
		x = 3;

		my_fun( x );

		display("About to end" + x);

		exit();
	}
}

function my_fun( a )
{
	display( a );
	return();
	display( "hello" );
}