mirror of
https://github.com/ProgramSnail/Lama.git
synced 2025-12-06 14:58:50 +00:00
4 lines
No EOL
180 B
Text
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)) |