RosettaCodeData/Task/HTTP/Lingo/http-2.lingo

18 lines
386 B
Text
Raw Permalink Normal View History

2016-12-05 23:44:36 +01:00
----------------------------------------
--
----------------------------------------
on getAdobeHomePage ()
script("SimpleHttpGet").new("http://www.adobe.com/", #printResult)
end
----------------------------------------
-- @callback
----------------------------------------
on printResult (res, err)
if err="OK" then
put res
else
put "Network Error:" && err
end if
end