new start | different approach

This commit is contained in:
2026-09-11 20:22:03 -04:00
parent f36de5de5a
commit b85c4c805a
4 changed files with 123 additions and 1 deletions
+10
View File
@@ -1,4 +1,14 @@
package main
func main() {
todos := Todos{}
todos.add("Learn more Go")
todos.add("You have to understand the code you are writing")
todos.add("You have to understand the code you are writing")
todos.toggle(0)
todos.delete(2)
todos.print()
}