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