RosettaCodeData/Task/File-input-output/DIBOL-11/file-input-output.dibol-11

22 lines
254 B
Text
Raw Permalink Normal View History

2023-07-01 11:58:00 -04:00
START ;Simple File Input and Output
RECORD TEMP
INLINE, A72
PROC
OPEN (8,I,"input.txt")
OPEN (9,O,"output.txt")
LOOP,
READS(8,TEMP,END)
WRITES(9,TEMP)
GOTO LOOP
END,
CLOSE 8
CLOSE 9
END