Re: Hmm...

2002-11-20 Thread Piers Cawley
Austin Hastings [EMAIL PROTECTED] writes: --- Piers Cawley [EMAIL PROTECTED] wrote: Austin Hastings [EMAIL PROTECTED] writes: --- Piers Cawley [EMAIL PROTECTED] wrote: I wonder what would happen if you had a junction of continuations. Producing something practical is left as an

Re: Hmm...

2002-11-16 Thread Damian Conway
Austin Hastings pondered: my $outfh = all(@input_handles); while ($outfh) print; No. Apart from the bug (leaving off the braces around the Cprint...spot the C hacker! ;-), this reads from each of the @input_handles and returns a conjunction of the values that were read. The print then

Hmm...

2002-11-15 Thread Piers Cawley
I wonder what would happen if you had a junction of continuations. Producing something practical is left as an exercise for the interested reader. -- Piers It is a truth universally acknowledged that a language in possession of a rich syntax must be in need of a rewrite. -- Jane

Re: Hmm...

2002-11-15 Thread Austin Hastings
--- Piers Cawley [EMAIL PROTECTED] wrote: I wonder what would happen if you had a junction of continuations. Producing something practical is left as an exercise for the interested reader. Isn't this effectively paste(1) ? That is, my $outfh = all(@input_handles); while ($outfh) print;

Re: Hmm...

2002-11-15 Thread Austin Hastings
--- Piers Cawley [EMAIL PROTECTED] wrote: Austin Hastings [EMAIL PROTECTED] writes: --- Piers Cawley [EMAIL PROTECTED] wrote: I wonder what would happen if you had a junction of continuations. Producing something practical is left as an exercise for the interested reader. Isn't