16
17
18
19
20
21
22
23
24
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(use (prefix mtargs args:))
(use (prefix mtdebug debug:))
(use (prefix mtconfigf configf:))
(define debug:print debug:dprint) ;; cannot name it print in mtdebug module
(define args:any? args:any-defined?) ;; canot name it any? in mtargs module
|
|
>
>
>
>
|
>
>
|
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
|
;; You should have received a copy of the GNU General Public License
;; along with Megatest. If not, see <http://www.gnu.org/licenses/>.
;;======================================================================
(use (prefix mtargs args:))
(use (prefix mtdebug debug:))
(use (prefix mtconfigf configf:))
(print "BB> called once")
(configf:add-eval-string "(use (prefix mtargs args:))
(use (prefix mtdebug debug:))
(use (prefix mtconfigf configf:))")
|