Re: as perl6 has no $/ ...

2013-09-23 Thread Patrick R. Michaud
On Tue, Sep 24, 2013 at 02:14:50AM +0200, Marc Chantreux wrote: > Come on, Perl6 people! did i miss something that takes carre of separators? > it would be nice to have something like: I think it's currently specced in S32 as :nl("\n"). See http://perlcabal.org/syn/S32/IO.html#open and http://p

as perl6 has no $/ ...

2013-09-23 Thread Marc Chantreux
hello |@perl6-users, I'm trying to implement the MARC::MIR spec in Perl6 so i need to read ISO2709 files (which is an old but still frequently used file format to store book records for libraries). In ISO2709, record separator (RS) is \x1d so the Perl5 implementation does: our $RS = "\x1d"; su