in reply to Re^6: 3-byte representation
in thread 3-byte representation

Your code works perfectly on my system ! But if I replace

open( OUT, '>>', $fil ) or die $!;
by
open(OUT, '>>'.$fil);
then the problem occurs !

Replies are listed 'Best First'.
Re^8: 3-byte representation
by BrowserUk (Patriarch) on Oct 13, 2011 at 16:42 UTC

    That is weird!

    It would be worth starting a new thread to see if anyone can reproduce and/or explain that before raising a perlbug.


    With the rise and rise of 'Social' network sites: 'Computers are making people easier to use everyday'
    Examine what is said, not who speaks -- Silence betokens consent -- Love the truth but pardon error.
    "Science is about questioning the status quo. Questioning authority".
    In the absence of evidence, opinion is indistinguishable from prejudice.

      I apologize and our beloved Perl isn't bugged, of course: when I was running the two versions of the program, mine was faulty because the "binmode OUT" was BEFORE the "open" line ;-( Now all is OK, thank you for your help and patience !