diff options
author | EuAndreh <eu@euandre.org> | 2020-08-17 09:19:34 -0300 |
---|---|---|
committer | EuAndreh <eu@euandre.org> | 2020-08-17 10:01:48 -0300 |
commit | 6cebae3ffa2ea2b364b0c39238ec7cea243cc2a7 (patch) | |
tree | 298238abfe44fa803f72c5367bbf8796bc25022d /_pastebins | |
parent | Add scripts/missing-translations.sh (diff) | |
download | euandre.org-6cebae3ffa2ea2b364b0c39238ec7cea243cc2a7.tar.gz euandre.org-6cebae3ffa2ea2b364b0c39238ec7cea243cc2a7.tar.xz |
Generate plaintext links to raw code blocks
Generate txt files from code blocks embedded on pages, and add links to them.
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 ``` |