Help for this page

Select Code to Download


  1. or download this
    my $VAR = makeA(20000000);
    sub makeA { return 'A' x (shift) }
    
  2. or download this
    my $VAR = make20m('A');
    sub make20m { return (shift) x 20000000 }