blob: fe7a4637d844d6ae92e89e0a8ea1f254bdf664d2 (
plain) (
tree)
|
|
;;; Under Creative Commons Attribution-ShareAlike 4.0
;;; International. See
;;; <https://creativecommons.org/licenses/by-sa/4.0/>.
(define-module (one five)
#:export (p test))
(define (p) (p))
(define (test x y)
(if (= x 0)
0
y))
|