Skip to content

Instantly share code, notes, and snippets.

@ariejan
Created May 16, 2013 12:15
Show Gist options
  • Save ariejan/5591318 to your computer and use it in GitHub Desktop.
Save ariejan/5591318 to your computer and use it in GitHub Desktop.
A simple TODO app in Ruby.
#!/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