var plane = new Sprite(0, 0, "img/plane.png");

plane.onGreenFlag(  function(){
	forever {
		move(20);
		turnLeft(10);
	}
});

