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