Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

5
votes
0answers
175 views

Why in Ruby 1.9 Continuations are evil? [closed]

I am relative new in Ruby world. And I don't know, what to think. In 'The Ruby Programming Language' I read I shouldn't use Continuations in new code and use Fibers instead. I found this presentation ...
4
votes
4answers
519 views

Bash continuation lines

How do you use bash continuation lines? I realize that you can do this: echo "continuation \ lines" >continuation lines However, if you have indented code, it doesn't work out so well... ...
2
votes
1answer
50 views

Continuation when one or more tasks in an array is cancelled or fails?

If I have an array of tasks, Task[]. How can I write a continuation that only runs when one or more tasks in the array fails(or is cancelled)?
1
vote
3answers
73 views

Best practice for if statements that exceed the 10 line continuation limit in vb6

ex. if condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or _ condition or then do something end if Say I ...
0
votes
6answers
319 views

syntaxerror: “unexpected character after line continuation character in python” math

I am having problems with this Python program I am creating to do maths, working out and so solutions but I'm getting the syntaxerror: "unexpected character after line continuation character in ...
0
votes
1answer
125 views

Action Chaining Not Redirecting After Controller.await(int millis)

I'm not sure if this isn't working as intended of it it's just me getting confused. What I would like to do is to asynchronously delay an action, and await(int millis) and I seem to be able to become ...
0
votes
1answer
141 views

Why Lua doesn't support full continuation though it support tail-call-optimization? [closed]

Possible Duplicate: call/cc in Lua - Possible? As far as I know, full continuation (call/cc) can be implemented efficiently with only TCO (tail-call-optimization). Current Lua 5.1 & VM ...