Re: order of execution

2019-10-21 Thread Brad Gilbert
Programs are compiled in memory, it just isn't written out to disk. On Mon, Oct 21, 2019 at 3:33 AM Marcel Timmerman wrote: > @yary > > Thanks for your answer. I've done it too and saw the same kind of result. > But then I thought I've read it somewhere that programs are not compiled, > only mod

Re: order of execution

2019-10-21 Thread Marcel Timmerman
@yary Thanks for your answer. I've done it too and saw the same kind of result. But then I thought I've read it somewhere that programs are not compiled, only modules. So I must write a module to check it. But if anyone knows, it would be faster ;-) Regards, marcel On 20-10-2019 22:59, yar

Re: processing a file in chunks

2019-10-21 Thread Elizabeth Mattijsen
In that bioinformatics data, is there another logical record separator? If so, and $lrs contains the logical record separator, you could do this: for "filename".IO.lines(:nl-in($lrs)) { .say } the :nl-in indicates the line separator to be used when reading a file. > On 21 Oct