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
Possibly related to #79, but opening a separate issue for visibility: GoAWK errors when parsing $++a. Compare:
$++a
$ echo -e '1 2 3\na b c\nd e f' | gawk '{ print $++a }' 1 b f $ echo -e '1 2 3\na b c\nd e f' | goawk '{ print $++a }' <cmdline>:1:10: expected expression instead of ++ { print $++a } ^
The text was updated successfully, but these errors were encountered:
Make constructs like $++lvalue not an error
8ad1a27
This matches gawk/mawk/original-awk behaviour. Add tests, also add test for ++rvalue syntax error. Fixes #167
Make constructs like $++lvalue not an error (#168)
5aee54f
Successfully merging a pull request may close this issue.
Possibly related to #79, but opening a separate issue for visibility: GoAWK errors when parsing
$++a
. Compare:The text was updated successfully, but these errors were encountered: