4 lines
155 B
Common Lisp
4 lines
155 B
Common Lisp
;; asynchronous call back definition
|
|
(define (success name text) (writeln 'Loaded name) (writeln text))
|
|
;;
|
|
(file->string success "https:/sourceforge.net")
|