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
comments: Comments starts with // characters and ends with the end of line character.
keywords: The keywords given in the grammar: int real if then else while
identifiers: An identifier starts with a letter and continues with a letter or digit. A keyword cannot be an identifier, and the maximum length of an identifier is 64 characters.
operators: The followings are operators: + - / * = == < <= > >= !=
delimiters: The followings are delimeters: ( ) { } ;
numbers: The numbers are defined as follows:
digit <- 0 | 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9
intnumber <- digit+ (the maximum integer number is 231)
exponent <- (E|e) ( + | - | null ) digit+ (the maximum exponent value is 128)