We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Octal literals are defined as 0[0-7]+ Binary literals are defined as 0b[01]+
0[0-7]+
0b[01]+
The text was updated successfully, but these errors were encountered:
Good idea! Need to add it to lexical analyzer and get_NUM_token_value function
Sorry, something went wrong.
Let's make octal like Python: 0o[0-7]+
lol no need to do anything it already does support octals and stuff
This is talking about integers.
int octal = 0b635; int binary = 0b1101010;
Oh, sorry!
No branches or pull requests
Octal literals are defined as
0[0-7]+
Binary literals are defined as
0b[01]+
The text was updated successfully, but these errors were encountered: