Help for this page

Select Code to Download


  1. or download this
    $x->[0]
    
  2. or download this
    new Foo
    
  3. or download this
    $class->method(LIST)     # Static method call.
    $object->method(LIST)    # Instance method call.
    $x->Class::method(LIST)  # Pretend the LHS is class "Class".
    $x->SUPER::method(LIST)  # Pretend the LHS is its super class.
    method $x LIST;          # Indirect method syntax