Help for this page

Select Code to Download


  1. or download this
    sub fn {
      sub { 3 }
    }
    
  2. or download this
    sub fn {
        return: 3
    }
    
  3. or download this
    sub foo {return 3;}
    print foo();
    __END__
    3