RosettaCodeData/Task/HTTP/EchoLisp/http.l
2023-07-01 13:44:08 -04:00

4 lines
154 B
Common Lisp

;; asynchronous call back definition
(define (success name text) (writeln 'Loaded name) (writeln text))
;;
(file->string success "http://www.google.com")