Recently I heard about something called Quine. But my definition of it is a bit unclear.
I believe that you can print your own Ruby file's source code without using __FILE__
? Is that possible? I would be very interested in your ideas. I would like to test that out. Dunno, get the source of the code below:
class MyClass
def initialize
print "You cannot read me!!"
end
end
So I can print that whole class?