/gist:0fbbe912e59722e1b8eb Secret
Last active
January 3, 2016 04:39
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
| timo@schmetterling ~/p/rakudo (nom)> ./perl6-p -e 'no warnings; say 005' | |
| 5 | |
| timo@schmetterling ~/p/rakudo (nom)> ./perl6-p -e 'say 005' | |
| Potential difficulties: | |
| Leading 0 does not indicate octal in Perl 6; please use 0o05 if you mean that | |
| at -e:1 | |
| ------> say 005⏏<EOL> | |
| Leading 0 does not indicate octal in Perl 6; please use 0o05 if you mean that | |
| at -e:1 | |
| ------> say 005⏏<EOL> | |
| 5 | |
| timo@schmetterling ~/p/rakudo (nom)> | |
| ./perl6-p -e 'no warnings :p5; say 005' | |
| 5 |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment