Quick actions

cmd+k|ctrl+k

Navigation

Languages

Untitled

Snippet info

Language

Raku

Visibility

unlisted

Author

legacy-anonymous

Created

2017-06-22T09:17:54Z

Updated

2017-06-22T09:17:54Z

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