This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use v6; | |
| =begin pod | |
| =head Learn Hiragana | |
| =head3 L<Tofugu: Learn Hiragana|https://www.tofugu.com/japanese/learn-hiragana/> | |
| =begin markdown | |
| letter | sound | kana | memorization |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| function! PutBlankLineAbove() | |
| let l:count = v:count ? v:count : 1 | |
| normal m` | |
| for i in range(1, l:count) | |
| put! _ | |
| endfor | |
| normal `` | |
| execute ":normal \<Left>" | |
| endfunction |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| use v6; | |
| =head DESCRIPTION | |
| =pod A crash course on Raku error handling. | |
| # ------------------------------------------------------------------------------ | |
| ('-' xx 78).join.say; ''.say; | |
| # ------------------------------------------------------------------------------ | |
| =head2 Basic error handling |
OlderNewer