Skip to content

Instantly share code, notes, and snippets.

@cloudhead
Created August 10, 2009 00:31
Show Gist options
  • Save cloudhead/164959 to your computer and use it in GitHub Desktop.
Save cloudhead/164959 to your computer and use it in GitHub Desktop.
class Question < IO
def initialize out = 1, mode = "w"
super
end
def puts str
super str + "?"
end
def print str
super str + "?"
end
end
$stdout = Question.new
puts "lol" # => lol?
print "wtfux" # => wtfux
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment