Help for this page

Select Code to Download


  1. or download this
    sub foo {
        retrun shift->{age} == shift;
    }
    
  2. or download this
    sub foo {
        return 1 if shift->{some_obj}->some_method;
        return;
    }