Help for this page

Select Code to Download


  1. or download this
    my $id = @_;
    
  2. or download this
    my ($id) = @_;
    my $id = $_[0];
    my $id = shift;
    
  3. or download this
    sub do_something {
    ...
    }
    
  4. or download this
    $subref = \&do_something;