Y
Hacker News
new
|
ask
|
show
|
jobs
by
pjmlp
2962 days ago
Yes, which means you are sure where the flow goes next, instead of hunting down goto spaghetti.
Even call/cc is more structured than plain gotos.
1 comments
CodeArtisan
2962 days ago
I am not sure about that. What about high order programming
(define (goto proc) (proc))
link
pjmlp
2962 days ago
It still has a call stack, goto only goes forward.
link