Help for this page

Select Code to Download


  1. or download this
    sub MySub($$;$) {
    my ($a,$b,$c) = @_;
    ...
    }
    ...
    MySub(1);
    
  2. or download this
    sub MySub($args) {
    ...
    #and if I do not pass, say, $args->{my_obligatory_arg} whole thing die
    +s on COMPILATION step
    }