Skip to content

Latest commit

 

History

History
26 lines (21 loc) · 675 Bytes

README.md

File metadata and controls

26 lines (21 loc) · 675 Bytes

Todo list in Elm

This is a simple todo list for the purpose of learning Elm.


Workshop

https://docs.google.com/presentation/d/1mR5hxZmO8WyQc7SsrZ8faRf0KsBfDAYVOx37ww4_uYM/edit?usp=sharing

Install Elm

https://guide.elm-lang.org/install.html

Usage

Go to the proper directory and run elm reactor e.g:

cd part1
elm reactor

Goals

  1. Simple "hello world" program
  2. Add multiple items to the TODO list
  3. Add a checkbox to each TODO element
  4. Count total number of todo tasks
  5. Conditionally apply css on checked items
  6. Fix the countIncomplete function to return the number of tasks that are unchecked
  • Bonus: Get filterView to compile