mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
7 lines
98 B
Plaintext
7 lines
98 B
Plaintext
|
// Binary expression
|
||
|
2 + 2;
|
||
|
|
||
|
// Nested binary expressions:
|
||
|
// left : 3 + 2
|
||
|
// right : 2
|
||
|
3 + 2 - 2;
|