Created
March 5, 2020 21:40
-
-
Save Tiefseetauchner/994a8bcfd265a738512c4ebf19cc31fc to your computer and use it in GitHub Desktop.
main Java Method
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static void main(String[] args) { | |
Todo todo = new Todo("Eat Crisps", LocalDate.of(2020, 4, 20)); | |
System.out.println(todo); | |
todo.finishTodo(); | |
System.out.println(todo); | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment