# # # # # # # # #
# /26/silent_nil.rb
#
# by Jan Lelis
# e-mail: mail@janlelis.de
# type/version: ruby
# snippet url: http://rbJL.net/26/silent_nil.rb
# original post: http://rbJL.net/26-the-28-bytes-of-ruby-joy
# license: CC-BY (DE)
#
# (c) 2010 Jan Lelis.
class NilClass
def method_missing *_
nil
end
end