Skip to content

Instantly share code, notes, and snippets.

View rsachdeva's full-sized avatar

Rohit Sachdeva rsachdeva

View GitHub Profile
@rsachdeva
rsachdeva / todo-tasks-lists-summer-holidays.clj
Created June 14, 2013 14:58
todo list (in clojure) for kids summer holidays tasks entered dynamically on command line!
(defn todo-prompt [question]
(println question)
(read-line))
;mutable with atom and swap!
(def todos (atom {}))
(defn todo-details [todos]
(let [task-code (todo-prompt "Task code?")