Files
cli_todo/main.go
T
2026-09-11 20:22:03 -04:00

15 lines
252 B
Go

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()
}