COMEFROM
en.wikipedia.org
COMEFROM
1–10 of 22 posts
Re: COMEFROM
#2Re: COMEFROM
#3Have any examples of languages that implement this?
Re: COMEFROM
#4Re: COMEFROM
#5Have any examples of languages that implement this?
http://en.wikipedia.org/wiki/Aspect-oriented_programming#See...
Re: COMEFROM
#6What are some more obscure control flow structures? It's easy to think that eg conditionals, loops, goto, function calls are the only ones that exist. But there is also stuff like jump tables and co-routines for instance.
Re: COMEFROM
#7From Wikipedia: An actual example in INTERCAL would be too difficult to read
Gotta love it.
Re: COMEFROM
#8What are some more obscure control flow structures? It's easy to think that eg conditionals, loops, goto, function calls are the only ones that exist. But there is also stuff like jump tables and co-routines for instance.
I don't know if it gets any more obscure than Scheme's call/cc, which is a building block for other control flow structures. You can use it for cool things like the Racket web server, where event-driven programming can be made to feel like sequential, procedural-style programming. You can also use it for sick mind twisters like ((call/cc call/cc) (call/cc call/cc))
Re: COMEFROM
#9What are some more obscure control flow structures? It's easy to think that eg conditionals, loops, goto, function calls are the only ones that exist. But there is also stuff like jump tables and co-routines for instance.
I don't know if it gets any more obscure than Scheme's call/cc, which is a building block for other control flow structures. You can use it for cool things like the Racket web server, where event-driven programming can be made to feel like sequential, procedural-style programming. You can also use it for sick mind twisters like ((call/cc call/cc) (call/cc call/cc))
Re: COMEFROM
#10Earlier quoted context omitted.
I don't know if it gets any more obscure than Scheme's call/cc, which is a building block for other control flow structures. You can use it for cool things like the Racket web server, where event-driven programming can be made to feel like sequential, procedural-style programming. You can also use it for sick mind twisters like ((call/cc call/cc) (call/cc call/cc))
Please explain :)
But you have to read it slowly.