
* 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
9 lines
241 B
Scheme
9 lines
241 B
Scheme
(module embed-me6 mzscheme
|
|
(with-output-to-file "stdout"
|
|
(lambda ()
|
|
(printf "This is 6\n")
|
|
(with-handlers ([void (lambda (exn) (printf "no etc.ss\n"))])
|
|
(printf "~a\n" (dynamic-require 'mzlib/etc 'true))))
|
|
'append))
|
|
|