create base

This commit is contained in:
Cametendo
2026-02-09 08:26:01 +01:00
parent 73ce756cbc
commit baab63f846
3 changed files with 41 additions and 0 deletions

19
Main.java Normal file
View File

@@ -0,0 +1,19 @@
import java.util.Scanner;
public class Main {
public static void main(String[] args) {
Scanner UserInput = new Scanner(System.in);
greeting();
String input = UserInput.nextLine();
if (YesNo.check(input)) {
System.out.println("Please choose a device");
} else {
System.out.println("Canceling...");
System.exit(0);
}
}
}