Created
May 16, 2013 12:15
-
-
Save ariejan/5591318 to your computer and use it in GitHub Desktop.
A simple TODO app in Ruby.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env ruby | |
# encoding: utf-8 | |
{ | |
"Write a todo app" => true, | |
"Create my first item" => true, | |
"Publish source code" => true, | |
"??" => false, | |
"Profit!" => false | |
}.each_pair {|d,s| puts "[#{s ? '✓' : ' '}] #{d}"} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment