# New Ticket Created by WFB # Please include the string: [perl #124023] # in the subject line of all future correspondence about this issue. # <URL: https://rt.perl.org/Ticket/Display.html?id=124023 >
Hi,
Following script on Windows:
use v6;
my $fh = open('test.txt', :w);
$fh.say("hello");
$fh.say("Perl6");
$fh.close;
produced following file:
helloPerl6
Also on Windows say uses \n instead of \r\n
THX
