java-scuola/Robot/src/Main.java

17 lines
356 B
Java
Raw Normal View History

2023-02-14 18:09:32 +01:00
public class Main {
public static void main(String[] args) {
Robot test = new Robot();
test.turnRight();
test.move();
test.move();
test.move();
test.move();
test.turnRight();
test.move();
test.move();
test.move();
System.out.println(test.getDirection());
}
}