mirror of
https://git.savannah.gnu.org/git/guile.git
synced 2025-05-19 19:20:23 +02:00
Initial revision
This commit is contained in:
commit
a98cef7e6c
36 changed files with 5255 additions and 0 deletions
12
test/test.scm
Normal file
12
test/test.scm
Normal file
|
@ -0,0 +1,12 @@
|
|||
|
||||
(set! %load-path (cons ".." %load-path))
|
||||
(use-modules (vm vm))
|
||||
|
||||
(define (test a b)
|
||||
(if (equal? a b)
|
||||
(display "OK\n")
|
||||
(display "failed\n")))
|
||||
|
||||
(let ((file (cadr (command-line))))
|
||||
(format #t "Testing ~S...\n" file)
|
||||
(load file))
|
Loading…
Add table
Add a link
Reference in a new issue