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
| $ perl6-j -e'start { while true { 1 } }' | |
| ===SORRY!=== | |
| Function true needs parens to avoid gobbling block | |
| at -e:1 | |
| ------> start { while true { 1 }⏏ } | |
| Missing block (apparently taken by 'true') | |
| at -e:1 | |
| ------> start { while true { 1 } ⏏} | |
| $ echo -ne "start { while true { 1 } }\n" | ./perl6-j --ll-exception | |
| > start { while true { 1 } } | |
| java.lang.NullPointerException |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment