Y
Hacker News
new
|
ask
|
show
|
jobs
by
shawn_w
608 days ago
And then there's Scheme, where there are no iterative loops; all looping is done with recursion. You can build pretty much everything other languages do with loops on top of that, though.
1 comments
groovy2shoes
608 days ago
Not true. Scheme has `do`. See R7RS section 4.2.4 "Iteration".
link
shawn_w
607 days ago
Scheme's `do` is implemented using recursion. There's a sample macro for it in 7.3.
link