Polyglot Todo is an programming language experiment. No rocket science, only the same application being written in multiple programming languages.
- Write a test suite that calls an executable so it can be run for every language.
- Test the add a Todo item.
- Persist the data in a file.
- Have a way to push the data to an external repository.
todo -l
: Lists all tasks in the current boardtodo -a the task name
: Adds a tasktodo -d 3
: Marks a task as donetodo -D 3
: Deletes a tasktodo -m 1
: Moves the task the given position (this feature was postponed)todo -u 1 the new name of the task
: Updates a task in place