Assignment 1 move start to Start.java

This commit is contained in:
2022-03-10 17:32:13 +08:00
parent d6c5f57935
commit 52c53c5be7
2 changed files with 5 additions and 4 deletions

View File

@@ -166,10 +166,6 @@ public class AutoRobot {
robot.printStatus();
}
public static void main(String[] args) {
testAutoRobot();
}
/**
* Compare double value.
*

View File

@@ -0,0 +1,5 @@
public class Start {
public static void main(String[] args) {
AutoRobot.testAutoRobot();
}
}