This is a simple todo CLI, this code is based in Abah Joseph video.
- Golang
First you need to build the project
make build
After build, you have the project binaries and you can run the todo app with the commands bellow:
./todo -add <your_task>
./todo -add clean my bedroom
./todo -list
./todo -complete=<index>
./todo -complete=1
./todo -del=<index>
./todo -del=1