Help for this page

Select Code to Download


  1. or download this
    sub int_monitor (\$ ) :lvalue {
      my $var=shift;
    ...
    
    (int_monitor my $bar) = 15;
    print "$bar\n";
    
  2. or download this
    sub int_monitor (\$;$)  {
      my $var=shift;
    ...
    
    int_monitor my $foo => 14;
    print "$foo\n";