Included Books
other
(in-package "ACL2")
include-book
(include-book "check-unary-lambda-call")
include-book
(include-book "std/testing/assert-equal" :dir :system)
other
(assert-equal (mv-list 4 (check-unary-lambda-call 'x)) '(nil nil nil nil))
other
(assert-equal (mv-list 4 (check-unary-lambda-call ''7/5)) '(nil nil nil nil))
other
(assert-equal (mv-list 4 (check-unary-lambda-call '(h a b))) '(nil nil nil nil))
other
(assert-equal (mv-list 4 (check-unary-lambda-call '((lambda (x y) (cons x y)) a b))) '(nil nil nil nil))
other
(assert-equal (mv-list 4 (check-unary-lambda-call '((lambda nil '0)))) '(nil nil nil nil))