Included Books
other
(in-package "ACL2")
include-book
(include-book "add-io-pairs")
gfunction
(defun g (x y) (declare (xargs :guard (and (natp x) (natp y)))) (mv (non-exec (* 10 x)) (* 10 y)))
other
(add-io-pair (g 100 8) (mv 1000 80))
other
(add-io-pair (g 700 7) (mv 7000 70))
other
(add-io-pair (g2 8) 800)