Created
September 13, 2008 20:23
-
-
Save bryanwoods/10658 to your computer and use it in GitHub Desktop.
This file contains 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
#IRB Funone | |
def hacked_computer | |
(1000 * 100).times do | |
puts "Preparing hard drive for reformat" | |
end | |
end | |
def ruin_computer | |
(1000 * 100).times do | |
puts "Deleting hard drive" | |
end | |
end | |
def ruined_computer | |
puts "Hard drive deleted." | |
end | |
puts hacked_computer | |
puts ruin_computer | |
puts ruined_computer |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment