mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
18 lines
193 B
Plaintext
18 lines
193 B
Plaintext
// Binary expression
|
|
2 + 2;
|
|
|
|
// Nested binary expressions:
|
|
// left : 3 + 2
|
|
// right : 2
|
|
3 + 2 - 2;
|
|
|
|
// Nested binary expressions:
|
|
3 * 3;
|
|
|
|
3 * 4 * 5;
|
|
|
|
3 + 6 * 2;
|
|
|
|
(2 + 2) * 3;
|
|
|
|
(2 + 2) * 3 + 10; |