11 lines
177 B
Text
11 lines
177 B
Text
|
|
import Nanoquery.IO
|
||
|
|
|
||
|
|
input = new(File, "input.txt")
|
||
|
|
output = new(File)
|
||
|
|
|
||
|
|
output.create("output.txt")
|
||
|
|
output.open("output.txt")
|
||
|
|
|
||
|
|
contents = input.readAll()
|
||
|
|
output.write(contents)
|