- or download this
sub UNIQUE::print{print 'Hello World!'}
UNIQUE->print(333);
sub UNIQUE::print{ print "\nMuhahaha! @_ \n"; }
UNIQUE->print(65.65.65.65); # Okay this is weird.
- or download this
sub {5};
- or download this
my $five = sub { 5 };
print $five->();
- or download this
sub Red
{
...
print "\n\n";
print LittleRed;
- or download this
sub Y{
my$i=0;
$i while($i++<10);
}
print"\nYES>".Y;
- or download this
sub DDD { 0; 1; 2; 3; 4; 5; }
print DDD;
- or download this
sub DDD { 0, 1, 2, 3, 4, 5, }