// spl switchScene
// press the key "n" and you go to scene2


var key    = 0;
var scene1 = getRef(4);

	while(1)
	{
		key = getKey();
		if( key == 115) 
		{
			switchScene(scene1);
		}
		freeze();
	}

