Massive renaming

This commit is contained in:
Dmitry Boulytchev 2020-02-16 00:21:15 +03:00
parent 241ab0a9ae
commit 61296c51e7
152 changed files with 45 additions and 29 deletions

19
regression/test099.lama Normal file
View file

@ -0,0 +1,19 @@
fun makeLazy (f) {
local flag = 0, value = 0;
fun () {
if flag
then value
else
value := f ();
flag := 1;
value
fi
}
}
local l = makeLazy (fun () {write (1); 800});
local x = read ();
write (l ());
write (l ())