Help for this page

Select Code to Download


  1. or download this
    sub also (&;@) {
      return @_;
    }
    
  2. or download this
    multifoo { $_ * 2 }
        also { foo($_) }
             @things;
    
  3. or download this
    subtype 'ModernDateTime'
       => as 'DateTime'
       => where { $_->year() >= 1980 }
       => message { 'The date is not modern enough' };