5 lines
95 B
Text
5 lines
95 B
Text
var %n = 1
|
|
while (%n <= $lines(input.txt)) {
|
|
write output.txt $read(input.txt,%n)
|
|
inc %n
|
|
}
|