Skip to content

Instantly share code, notes, and snippets.

@Tiefseetauchner
Created March 5, 2020 21:40
Show Gist options
  • Save Tiefseetauchner/994a8bcfd265a738512c4ebf19cc31fc to your computer and use it in GitHub Desktop.
Save Tiefseetauchner/994a8bcfd265a738512c4ebf19cc31fc to your computer and use it in GitHub Desktop.
main Java Method
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