diff options
author | rsiddharth <rsiddharth@ninthfloor.org> | 2016-01-22 20:08:36 -0500 |
---|---|---|
committer | rsiddharth <rsiddharth@ninthfloor.org> | 2016-01-22 20:08:36 -0500 |
commit | 227f0b51ff0aff69586e16a3c9db190475cbfa84 (patch) | |
tree | 95a4401c92e5b905bf9dd31494444af8ae14bd0c | |
parent | 251afc1ce861519ab3b54d599edc9db84d3e1e56 (diff) |
Added one/five.scm
-rw-r--r-- | one/five.scm | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/one/five.scm b/one/five.scm new file mode 100644 index 0000000..a057e1e --- /dev/null +++ b/one/five.scm @@ -0,0 +1,9 @@ +(define-module (one five) + #:export (p test)) + +(define (p) (p)) + +(define (test x y) + (if (= x 0) + 0 + y)) |