Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- import java.io.File;
- import java.util.ArrayList;
- import java.util.Scanner;
- public class RecipeSearch {
- public static void main(String[] args) {
- Scanner scanner = new Scanner(System.in);
- System.out.print("File to read: ");
- String fileToRead = scanner.nextLine();
- UserInterface newfile = new UserInterface(fileToRead, scanner);
- newfile.start();
- }
- }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement