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