10 lines
199 B
Racket
10 lines
199 B
Racket
(module embed-me10 mzscheme
|
|
(require openssl/mzssl)
|
|
|
|
(with-output-to-file (build-path (find-system-path 'temp-dir) "stdout")
|
|
(lambda ()
|
|
(printf "~a\n" ssl-available?))
|
|
'append))
|
|
|
|
|