Help for this page

Select Code to Download


  1. or download this
      DB<108> sub nopro  { print @_ }
    
    ...
    34567
      DB<112> pro(@a)
    5
    
  2. or download this
      DB<113> sub meth ($$) { print @_ }
    
    ...
    main34567
      DB<115> main::meth('main',@a)
    main5
    
  3. or download this
    sub meth {
      my ($self, $x_ax, $y_ax, $arr_ref, @opt) = @_;
    }