life-code: To-Do List

To give you an idea as to what life-coding is all about, have a look at the code for how to complete to-do list:

define do-task-list
  for item in task-list
    perform item
  loop
end

Though it says nothing about how to make task-lists or how to perform the action, it does provide a concrete definition of how to execute a to-do list. Over time, you’ll see these bits of code start to get integrated into a definitive system.

Leave a Comment