8 lines
168 B
Text
8 lines
168 B
Text
|
|
decl file input output
|
||
|
|
decl string contents
|
||
|
|
input.open "input.txt"
|
||
|
|
output.create "output.txt"
|
||
|
|
output.open "output.txt"
|
||
|
|
set contents (input.readall)
|
||
|
|
out contents output
|