Skip to content

Instantly share code, notes, and snippets.

@timo
Last active January 3, 2016 04:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timo/0fbbe912e59722e1b8eb to your computer and use it in GitHub Desktop.
Save timo/0fbbe912e59722e1b8eb to your computer and use it in GitHub Desktop.
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