Help for this page
To write to an IO::Handle, use the print method.
my $wfh = open("in.txt", :w); $wfh.print("a\n"); $wfh.close;
spurt "in.txt", "a\n";