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