* 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
Родитель f1ddd69d7b
Коммит ec12be8574
2 изменённых файлов: 10 добавлений и 0 удалений

Просмотреть файл

@ -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>
* golf_prelude.rb (Object.const_missing): Auto-complete constants.

Просмотреть файл

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