diff options
Diffstat (limited to 'Computer_Science/SICP/test.scm')
| -rw-r--r-- | Computer_Science/SICP/test.scm | 4 |
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) |
