Help for this page

Select Code to Download


  1. or download this
    sub print_sucky_bunny {
       my ($client) = shift @_;
    ...
       print $client "\n\r                      W      _\    /\"\ ";
       print $client "\n\r                    (\" ~----( ~   Y.  ) ";
    }
    
  2. or download this
    sub create_sucky_bunny {
       my $bunny;
    ...
       
       return $bunny;
    }
    
  3. or download this
    my $ascii_bunny = create_bunny();
    
    # or
    
    print $client create_bunny();
    
  4. or download this
    my $foo = "bar
    baz
    qux
    ";                # look ma, no \n's!!
    
  5. or download this
    my $foo = q(bar
    baz
    qux
    );
    
  6. or download this
    sub create_bunny {
       my $spaces = ' ' x 20;
    ...
    }
    
    print $client create_bunny();