Open mainak55512 opened 1 month ago
Hi @mainak55512,
I'd love to work on this! Should the parser support all arithmetic operations (e.g., +, -, *, /), or are there specific cases we should handle? Also, any guidance on how deeply nested expressions should be?
Looking forward to contributing!
Hi @mainak55512,
I'd love to work on this! Should the parser support all arithmetic operations (e.g., +, -, *, /), or are there specific cases we should handle? Also, any guidance on how deeply nested expressions should be?
Looking forward to contributing!
Hi @faresbouzayen It should support all arithmetic operations (also should have a check for division by 0).
It is based on RD parser, so it should be able to recursively parse something like:
((a * 2) + b) * (c - (d % 4)) <= (e / f)
This should parse something like
(age * 2) <= 18