
* Another big chunk of v4-require-isms * Allow `#lang framework/keybinding-lang' for keybinding files * Move hierlist sources into "mrlib/hierlist", leave stub behind svn: r10689
10 lines
157 B
Scheme
10 lines
157 B
Scheme
(module embed-me10 mzscheme
|
|
(require openssl/mzssl)
|
|
|
|
(with-output-to-file "stdout"
|
|
(lambda ()
|
|
(printf "~a\n" ssl-available?))
|
|
'append))
|
|
|
|
|