Created
March 9, 2018 10:29
-
-
Save nitin42/4a7bd50fb7f1220a52b533ed532fa5d6 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
expression => binary | unary | grouping | literal | |
literal => "true" | "false" | number | string | "null" | |
grouping => "(" expression ")" | |
binary => expression operator expression | |
unary => ( "-" | "!" ) expression | |
operator => "===" | "!==" | "<" | "<=" | ">" | ">=" | "+" | "-" | "*" | "/" | |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment