summaryrefslogtreecommitdiffstats
path: root/one
diff options
context:
space:
mode:
authorrsiddharth <rsiddharth@ninthfloor.org>2016-01-22 20:08:36 -0500
committerrsiddharth <rsiddharth@ninthfloor.org>2016-01-22 20:08:36 -0500
commit227f0b51ff0aff69586e16a3c9db190475cbfa84 (patch)
tree95a4401c92e5b905bf9dd31494444af8ae14bd0c /one
parent251afc1ce861519ab3b54d599edc9db84d3e1e56 (diff)
Added one/five.scm
Diffstat (limited to 'one')
-rw-r--r--one/five.scm9
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))