Ruby/Method/undef
Материал из Wiki.crossplatform.ru
(Различия между версиями)
ViGOur (Обсуждение | вклад) м (1 версия: Импорт выборки материалов по Ruby) |
Текущая версия на 17:55, 13 сентября 2010
undefine a method with undef.
def hello puts "Hello, Matz!" end hello # => Hello, Matz! undef hello # undefines the method named hello hello # try calling this method now