gruppe06-hufflepuff-projekt.../src/TextInput.java

11 lines
196 B
Java
Raw Normal View History

import java.util.Scanner;
public class TextInput {
private static Scanner sc = new Scanner("");
public static String[] checkForInput() {
return sc.nextLine().split("");
}
}