// This is a simple test of the SC robot. The program simply moves
// a robot forward until it comes to a wall.

import geneseo.cs.sc.*;

public class SimpleApplication {
        
    public static void main( String args[] ) {

        Robot robot = new Robot();

        while ( robot.okToMove() ) {
            robot.move();
        }
    }
}