(String[] args)
| 5 | |
| 6 | public class ToDoList { |
| 7 | public static void main(String[] args) { |
| 8 | ArrayList<String> tasks = new ArrayList<>(); |
| 9 | list(tasks); |
| 10 | } |
| 11 | |
| 12 | public static void list(ArrayList<String> tasks) { |
| 13 | Scanner sc = new Scanner(System.in); |