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
Reported by lsf37 on 2001-02-28 13:45 UTC The rules
"ab" { System.out.print("AB"); } "a"/"b" { System.out.print("A"); }
"ab" { System.out.print("AB"); }
"a"/"b" { System.out.print("A"); }
give you with input ab the output ABb and not the correct AB. If the rules are in reversed order ("a"/"b" and then "ab") it works ok.
ab
ABb
AB
"a"/"b"
"ab"
This bug was reported by Tibi.
(fixed in 1.3)
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Reported by lsf37 on 2001-02-28 13:45 UTC
The rules
"ab" { System.out.print("AB"); }
"a"/"b" { System.out.print("A"); }
give you with input
ab
the outputABb
and not thecorrect
AB
. If the rules are in reversed order(
"a"/"b"
and then"ab"
) it works ok.This bug was reported by Tibi.
(fixed in 1.3)
The text was updated successfully, but these errors were encountered: