Last active
September 26, 2017 11:01
Star
You must be signed in to star a gist
This file contains 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
| zoffix@VirtualBox~$ perl6 -e 'react { whenever $*IN.Supply(:size<1>).lines { .say } }' | |
| line 1 | |
| line 1 | |
| second line | |
| second line | |
| third line | |
| third line | |
| ^C | |
| zoffix@VirtualBox~$ perl6 -e 'react { whenever $*IN.lines.Supply { .say } }' | |
| line 1 | |
| line 1 | |
| second line | |
| second line | |
| third line | |
| third line | |
| ^C | |
| zoffix@VirtualBox~$ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment