Help for this page

Select Code to Download


  1. or download this
    P:\test>perl -wl
    my $b .= 'fred' . 'bill';
    print $b;;
    ^Z
    fredbill
    
  2. or download this
    P:\test>perl -wl
    my $a = 'a' x 10;
    ...
    print $b;
    ^Z
    aaaaaaaaaaaaaaaaaaa-aaaaaaaa--aaaaaaa---aaaaaa----aaaaa-----aaaa------
    +aaa-------aa--------a---------
    
  3. or download this
    P:\test>perl -wl
    my $a = 'a' x 10;
    ...
    print $b;
    ^Z
    Use of uninitialized value in print at - line 3.