Help for this page

Select Code to Download


  1. or download this
    my $bla = 'a string' . 'another string' . 'yet another' . 'too much fo
    +r one line';
    
  2. or download this
    my $bla = 'a string'
        . 'another string'
        . 'yet another'
        . 'too much for one line';
    
  3. or download this
    my $bla 
        = 'a string'
        . 'another string'
        . 'yet another'
        . 'too much for one line';