* golf_prelude.rb (Object.quine): get the script itself.

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@14748 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
usa 2007-12-28 02:18:05 +00:00
parent f1ddd69d7b
commit ec12be8574
2 changed files with 10 additions and 0 deletions

View File

@ -1,3 +1,7 @@
Fri Dec 28 11:16:53 2007 NAKAMURA Usaku <usa@ruby-lang.org>
* golf_prelude.rb (Object.quine): get the script itself.
Fri Dec 28 10:06:54 2007 Akinori MUSHA <knu@iDaemons.org> Fri Dec 28 10:06:54 2007 Akinori MUSHA <knu@iDaemons.org>
* golf_prelude.rb (Object.const_missing): Auto-complete constants. * golf_prelude.rb (Object.const_missing): Auto-complete constants.

View File

@ -1,3 +1,5 @@
SCRIPT_LINES__={}
class Object class Object
def method_missing m, *a, &b def method_missing m, *a, &b
r = /^#{m}/ r = /^#{m}/
@ -14,6 +16,10 @@ class Object
def h(a='H', b='w', c='!') def h(a='H', b='w', c='!')
puts "#{a}ello, #{b}orld#{c}" puts "#{a}ello, #{b}orld#{c}"
end end
def quine(src = $0)
SCRIPT_LINES__[src]
end
end end
class Integer class Integer