This is a simple todo list for the purpose of learning Elm.
https://docs.google.com/presentation/d/1mR5hxZmO8WyQc7SsrZ8faRf0KsBfDAYVOx37ww4_uYM/edit?usp=sharing
https://guide.elm-lang.org/install.html
Go to the proper directory and run elm reactor
e.g:
cd part1
elm reactor
- Simple "hello world" program
- Add multiple items to the TODO list
- Add a checkbox to each TODO element
- Count total number of todo tasks
- Conditionally apply css on checked items
- Fix the
countIncomplete
function to return the number of tasks that are unchecked
- Bonus: Get
filterView
to compile