RosettaCodeData/Task/Fixed-length-records/Perl/fixed-length-records-4.pl
2023-07-01 13:44:08 -04:00

2 lines
103 B
Raku

use Path::Tiny;
path('outfile.dat')->spew(reverse unpack '(a80)*', reverse path('infile.dat')->slurp);