| simply looking for an example of an HTTP GET req via arc. this works in racket but having trouble dealing with loading .scm files into arc (require net/url)
(require json) (define (get-txt url)
   (call/input-url (string->url url)
                   get-pure-port
                   (compose port->string)))  |