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
Currently, our parser does not understand ternary operators (e.g., int a = c > 10 ? 2 : 0). As this is just syntactic sugar for writing an dependent assignment in a concise way, it would be nice to provide this as convenience to the user.
The text was updated successfully, but these errors were encountered:
Currently, our parser does not understand ternary operators (e.g.,
int a = c > 10 ? 2 : 0
). As this is just syntactic sugar for writing an dependent assignment in a concise way, it would be nice to provide this as convenience to the user.The text was updated successfully, but these errors were encountered: