We are about to build a toy task manager that should work in any terminal.
For simplicity, let task to be just a sequence of characters:
We have a non empty list of tasks we have an intent to do:
For each task we want to print a title and put a newline after it:
Next we will make our task manager more interactive - we would like to have a cursor for picking a task by scrolling up and downn.
Full source code is available here.
Continue this tutorial