Help for this page

Select Code to Download


  1. or download this
    hello ('Hello', 'world');
    
    ...
    
        print "$hi $place\n";
    }
    
  2. or download this
    Hello world
    
  3. or download this
    sub hello {
        my ($hi, $place) = @_;
    
        print "$hi $place\n";
    }
    
  4. or download this
    hello (hi => 'Hello', place => 'world');
    
    ...
    
        print "$params{hi} $params{place}\n";
    }