mirror of
https://github.com/Ed94/LangStudies.git
synced 2024-11-10 04:14:53 -08:00
11 lines
69 B
Plaintext
11 lines
69 B
Plaintext
// Single
|
|
x = 42;
|
|
|
|
// Chained
|
|
x = (y = 42);
|
|
|
|
x + y;
|
|
|
|
|
|
x += y;
|
|
y += 5; |