mirror of
https://github.com/urinalcaketopper/fddl.git
synced 2025-06-05 21:14:47 +00:00
9 lines
89 B
Plaintext
9 lines
89 B
Plaintext
let x = 10;
|
|
{
|
|
let y = 5;
|
|
print x + y;
|
|
let x = 2;
|
|
print x + y;
|
|
}
|
|
print x;
|