import kareltherobot.*;
public class GGMaze implements Directions {
    public static void task() {
        FastMazeWalker robby = new FastMazeWalker(1, 1, East, 0);
        robby.escapeMaze();
        robby.turnOff();
    }
    // Main entry point
    public static void main(String[] args) {
        World.setDelay(10);
        World.readWorld("ggmaze.txt");
        World.setVisible();
        task();
    }
}