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 these are the operators supported by yalija, going from the lowest precedence level to the highest.
Name
Operators
Associativity
Equality
==!=
Left
Comparison
>>=<<=
Left
Term
+-
Left
Factor
*/
Left
Unary
!-
Right
Yalija's missing a common feature that usually exists in modern programming languages, that is ternary operator.
It would be nice if we can support this.
The text was updated successfully, but these errors were encountered:
Overview
Currently these are the operators supported by yalija, going from the lowest precedence level to the highest.
==
!=
>
>=
<
<=
+
-
*
/
!
-
Yalija's missing a common feature that usually exists in modern programming languages, that is ternary operator.
It would be nice if we can support this.
The text was updated successfully, but these errors were encountered: