lama_byterun/stdlib/regression/test17.lama
Dmitry Boulytchev 61296c51e7 Massive renaming
2020-02-16 00:21:15 +03:00

4 lines
No EOL
180 B
Text

local x = lazy (for local i; i := 0, i<10, i := i + 1 do printf ("Lazy body: %d\n", i) od; 100);
printf ("First force: %d\n", force (x));
printf ("Second force: %d\n", force (x))