You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
What steps will reproduce the problem?
Run:
echo a ? b ? c : d : e | python sexp.py
What is the expected output? What do you see instead?
It should be equivalent to
echo a ? (b ? c : d) : e | python sexp.py
, i.e.:
(SCRIPT
(TERNARY a (TERNARY b c d) e))
however, instead I get:
(SCRIPT
(TERNARY a b (TERNARY c d e)))
which is the same as
echo (a ? b : c) ? d : e | python sexp.py
Original issue reported on code.google.com by [email protected] on 24 Jan 2014 at 9:29
The text was updated successfully, but these errors were encountered:
Original issue reported on code.google.com by
[email protected]
on 24 Jan 2014 at 9:29The text was updated successfully, but these errors were encountered: