Skip to content

Instantly share code, notes, and snippets.

@will
Created August 18, 2011 06:16
Show Gist options
  • Save will/1153442 to your computer and use it in GitHub Desktop.
Save will/1153442 to your computer and use it in GitHub Desktop.
# encoding: UTF-8
def whistle
puts rand > 0.5 ? "♫" : "♪ "
end
def you_work
rand < 0.9
end
whistle while you_work
__END__
>> whistle while you_work
=> nil
>> whistle while you_work
=> nil
>> whistle while you_work
=> nil
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment