Help for this page

Select Code to Download


  1. or download this
    {
        package My::Class;
    ...
    
    print $obj_1->foo; # print "Foo"
    print $obj_2->foo; # dies with a method not found error
    
  2. or download this
    class << obj
      def new_method
       "fweeee"
      end
    end
    
  3. or download this
    obj.add_singleton_method(lambda { "fweee" })