// This tells Ecipse about Karel
import stanford.karel.*;

// Define a program called StepUp
public class StepUp extends Karel {
	
	// The program starts executing from the "run" method.
	public void run() {
		move();
		// Commands in the run method are executed one at a time
	}
	
}

