Help for this page

Select Code to Download


  1. 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.
    
  2. or download this
    sub {5};
    
  3. or download this
    my $five = sub { 5 };
    print $five->();
    
  4. or download this
    sub Red
    {
    ...
    print "\n\n";
    
    print LittleRed;
    
  5. or download this
    sub Y{
        my$i=0;
        $i while($i++<10);
    }
    print"\nYES>".Y;
    
  6. or download this
    sub DDD { 0; 1; 2; 3; 4; 5; }
    
    print DDD;
    
  7. or download this
    sub DDD { 0, 1, 2, 3, 4, 5, }