LangStudies/Builds/Tests/3.BinaryExpression.letter
Ed94 0acd6ecbaf BAPFS Lecture 18
Instead of making a cli I made updates the gui to open any file.
2022-07-14 01:55:31 -04:00

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;