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