aboutsummaryrefslogtreecommitdiff
path: root/Computer_Science/SICP/test.scm
diff options
context:
space:
mode:
authorSteve Lee <me@xiangyangli.com>2017-12-02 06:10:20 +0800
committerSteve Lee <me@xiangyangli.com>2017-12-02 06:10:20 +0800
commit9b939e65cf007e859dabe5de6b31d255d647e0ce (patch)
treebf9229755f4e58bb81add73c7f3c32fe4023e7ec /Computer_Science/SICP/test.scm
parent5dc061ae68ac3b5b28556bdbd1574579d8da33e7 (diff)
download42-9b939e65cf007e859dabe5de6b31d255d647e0ce.tar.xz
42-9b939e65cf007e859dabe5de6b31d255d647e0ce.zip
category
Diffstat (limited to 'Computer_Science/SICP/test.scm')
-rw-r--r--Computer_Science/SICP/test.scm4
1 files changed, 4 insertions, 0 deletions
diff --git a/Computer_Science/SICP/test.scm b/Computer_Science/SICP/test.scm
new file mode 100644
index 0000000..46f73ee
--- /dev/null
+++ b/Computer_Science/SICP/test.scm
@@ -0,0 +1,4 @@
+(define (plus x y)
+ (+ x y))
+
+(plus 2 3)