Skip to content

Instantly share code, notes, and snippets.

@timo
Created June 11, 2020 17:40
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/1024223e0f6bb240d2ead9c3092e2df3 to your computer and use it in GitHub Desktop.
Save timo/1024223e0f6bb240d2ead9c3092e2df3 to your computer and use it in GitHub Desktop.
what's wrong here? it'll forever be a mystery!
timo@schmand ~/p/rakudo (master)> python -c 'a = 44'
File "<string>", line 1
a = 44
^
SyntaxError: invalid syntax
timo@schmand ~/p/rakudo (master) [1]> perl6 -e 'my $foo = 99'
timo@schmand ~/p/rakudo (master)> python -c 'a = 44'
File "<string>", line 1
a = 44
^
SyntaxError: invalid syntax
timo@schmand ~/p/rakudo (master) [1]> perl6 -e 'my $foo = 99'
timo@schmand ~/p/rakudo (master)>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment