We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
"breaks" means outputs: "Invalid character in ASCII string"
13:41 < diakopter> say('¢'"\n"); # breaks 13:41 < diakopter> say('¢'); # works 13:42 < diakopter> say("\n"); # works 13:42 < diakopter> say("¢\n"); # works 13:46 < diakopter> say("¢""\n"); # breaks 13:47 < diakopter> say("¢"'a'); # breaks 13:50 < diakopter> say('a'"¢"); # breaks 13:51 < diakopter> I have parrot nqp 13:51 < diakopter> nqp's parrot 13:52 < diakopter> 'a'~"¢" # breaks
The text was updated successfully, but these errors were encountered:
The source of the problem seems to be parrot: parrot/parrot#837 .
Sorry, something went wrong.
parrot/parrot#837 has been fixed in a branch and merged. Please let us know if this fixes the problem for y'all
Looks good in 2013.01:
say('¢'~"\n"); # breaks say('¢'); # works say("\n"); # works say("¢\n"); # works say("¢"~"\n"); # breaks say("¢"~'a'); # breaks say('a'~"¢"); # breaks 'a'~"¢" # breaks
OUTPUT:
¢ ¢ ¢ ¢ ¢a a¢
No branches or pull requests
"breaks" means outputs: "Invalid character in ASCII string"
13:41 < diakopter> say('¢'
"\n"); # breaks"\n"); # breaks13:41 < diakopter> say('¢'); # works
13:42 < diakopter> say("\n"); # works
13:42 < diakopter> say("¢\n"); # works
13:46 < diakopter> say("¢"
13:47 < diakopter> say("¢"
'a'); # breaks"¢"); # breaks13:50 < diakopter> say('a'
13:51 < diakopter> I have parrot nqp
13:51 < diakopter> nqp's parrot
13:52 < diakopter> 'a'~"¢" # breaks
The text was updated successfully, but these errors were encountered: