IO#

Provides functionality related to data input/output between the program and the outside world.

Built-in Functions#

FETCH: Fetch Text Content from URL#

FETCH(url: STRING): STRING

Fetches UTF-8 text content from url via GET request. Raises an error if the HTTP status code is not 2xx.

FETCHB: Fetch Binary Content from URL#

FETCHB(url: STRING): BLOB

Fetches binary content from url via GET request. Raises an error if the HTTP status code is not 2xx.