Y
Hacker News
new
|
ask
|
show
|
jobs
by
CornCobs
746 days ago
Yes, though the languages do not support it explicitly you can simulate lazy evaluation by wrapping all your arguments in closures. This way they won't be evaluated until called within the function body.
1 comments
agumonkey
746 days ago
Sidenote, the evaluation model of python can be surprising. List comprehension will create implicit function scopes that can trip you up.
link