Help for this page

Select Code to Download


  1. or download this
    sub N_scalars {
      my ($prefix, $qty) = @_;
      ...unknown magic here...
    }
    
  2. or download this
    N_scalars("foo",5);
    
  3. or download this
    $foo_1 = '';
    $foo_2 = '';
    $foo_3 = '';
    $foo_4 = '';
    $foo_5 = '';
    
  4. or download this
    sub arb_scalars {
      foreach $foo (@_) {
        ...unknown magic here...
      }
    }
    
  5. or download this
    arb_scalars("alfa","bravo","charlie");
    
  6. or download this
    $alpha = '';
    $bravo = '';
    $charlie = '';