Untitled
sub hello-world ( Str $text where $_ eq 'Hello World!' ) {
return $text;
}
say hello-world('Hello World!'); # Hello World!
say hello-world('another string'); # failINFO
sub hello-world ( Str $text where $_ eq 'Hello World!' ) {
return $text;
}
say hello-world('Hello World!'); # Hello World!
say hello-world('another string'); # fail