Smalltalk
Lazy evaluation in Smalltalk
The same problem solved in Smalltalk. I have come up with an interesting implementation for the lazy
A sample code to show how to use it follows:
|lazy toRun temp result|
“*********begin lazy implementation************”
lazy := [ :myFun| |myRun|
myRun...