7 lines
87 B
Raku
7 lines
87 B
Raku
binmode stdin;
|
|
binmode stdout;
|
|
while(<>)
|
|
{
|
|
s/t(lxsayshere)/\x0\1/;
|
|
print $_;
|
|
}
|