Functional‎ > ‎

Lazy Evaluation

coming soon.

Lazy evaluation of function parameters can be emulated using Go's channels and goroutines to implement high-level thunks.

foo(a(), b())

In a lazy-evaluated language, the expressions a() and b() may or may not be evaluated.
Comments