learning-suite
test suite
test-alist-ref
: pass
(define (test-alist-ref _)
(let ((alst '((a 3) (b 2))))
(⊦= '(3) (alist-ref 'a alst))
(⊦= '(2) (alist-ref 'b alst))
(⊦= #f (alist-ref 'c alst))))
test/len
: pass
(define (test/len _)
(let ((my-strlen
(foreign-lambda*
int
((scheme-object cons))
"C_return(C_header_size(cons));")))
(⊦= 2 (my-strlen (cons 1 '())))
(⊦= 2 (my-strlen (cons 1 (cons 2 (cons 3 '())))))
(⊦= 11 (my-strlen "hello world"))))
test-null-eq?
: pass
(define (test-null-eq? _) (⊨ (eq? '() '())))