mirror of
https://github.com/bronson-g/caltool.git
synced 2025-12-23 21:17:43 -05:00
7 lines
105 B
Raku
7 lines
105 B
Raku
while(<>) {
|
|
chomp($_);
|
|
if(substr($_, length($_)-1, 1) eq "\r") {
|
|
chomp($_);
|
|
}
|
|
print("$_\r\n");
|
|
} |