LangStudies/Builds/Tests/4.Assignment.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

11 lines
69 B
Plaintext

// Single
x = 42;
// Chained
x = (y = 42);
x + y;
x += y;
y += 5;