RosettaCodeData/Task/HTTP/Oz/http-1.oz
Ingy döt Net d066446780 langs a-z
2013-04-10 22:43:41 -07:00

10 lines
211 B
Text

declare
fun {GetPage Url}
F = {New Open.file init(url:Url)}
Contents = {F read(list:$ size:all)}
in
{F close}
Contents
end
in
{System.showInfo {GetPage "http://www.rosettacode.org"}}