File input/output: Difference between revisions

Content deleted Content added
m →‎{{header|Fortran}}: not only gfotran (f2003 is enough)+removing spacing around parens, not recommended by most coding conv
Line 1,246:
var file = open("input.txt")
loop {
! data += input@file(256)
issues {
break
Line 1,253:
delete("output.txt")
file = open("output.txt")
output@file(data)
}</lang>