diff options
Diffstat (limited to '_pastebins')
-rw-r--r-- | _pastebins/raku-tuple-type-annotation.md | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/_pastebins/raku-tuple-type-annotation.md b/_pastebins/raku-tuple-type-annotation.md index 9ac62cc..21dbdf2 100644 --- a/_pastebins/raku-tuple-type-annotation.md +++ b/_pastebins/raku-tuple-type-annotation.md @@ -5,7 +5,7 @@ layout: pastebin lang: en --- -```raku +```perl # Single Str return value: this works sub f1(Str $in --> Str) { $in; @@ -24,7 +24,7 @@ sub f2(Str $in --> (Str, Str)) { Error log is: -``` +```perl ===SORRY!=== Error while compiling /path/to/my/file Malformed return value ``` |