4 lines
154 B
Common Lisp
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")
|