mirror of https://github.com/01-edu/public.git
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
502 B
10 lines
502 B
6 months ago
|
public class ExerciseRunner {
|
||
|
public static void main(String[] args) {
|
||
|
TodoList myList = new TodoList(3); // List can hold up to 3 tasks
|
||
|
myList.addTask("Go grocery shopping");
|
||
|
myList.addTask("Pay electricity bill");
|
||
|
myList.setStatus(0, TaskStatus.COMPLETED); // Mark the first task as completed
|
||
|
myList.setDescription(1, "Pay all utility bills"); // Update the description of the second task
|
||
|
myList.displayTasks(); // Display the list of tasks
|
||
|
}
|
||
|
}
|