4 lines
116 B
Text
4 lines
116 B
Text
|
|
var x = 42;
|
||
|
|
{ x += 1; say x }.fork.wait; # x is 43 here
|
||
|
|
say x; # but here is still 42
|