feature/task-manager/init #27

Merged
KamaSK merged 2 commits from feature/task-manager/init into dev 2025-05-26 21:44:19 +03:00
Showing only changes of commit 5b4e948846 - Show all commits

View File

@ -11,6 +11,7 @@ public class TodoApp {
repo.save(new SimpleTask("Задача номер один")); repo.save(new SimpleTask("Задача номер один"));
repo.save(new SimpleTask("Задача номер два")); repo.save(new SimpleTask("Задача номер два"));
repo.save(new SimpleTask("Задача номер три")); repo.save(new SimpleTask("Задача номер три"));
repo.save(new SimpleTask("Задача номер четыре"));
System.out.println(repo.findAll()); System.out.println(repo.findAll());