Help for this page

Select Code to Download


  1. or download this
    sub foo ($x) { ... }
    
  2. or download this
    sub foo { my $x = $_[0]; ... }
    
  3. or download this
    sub foo (Int $x) { ... }
    
  4. or download this
    sub foo { my Int $x = $_[0]; ... }