Internet

/* ... */

(Available in ioDesktop and ioServer)

Fetching an URL:

url := URL clone with("http://example.com/")
url fetch  # get data and write to stdout

# or, writing to file:
f := File clone with("out.txt") openForUpdating
url fetchToFile(f)
# XXX does not work!?