RosettaCodeData/Task/HTTP/Unicon/http.unicon

5 lines
75 B
Plaintext

procedure main(arglist)
m := open(arglist[1],"m")
while write(read(m))
end