diff options
author | bd <bdunahu@operationnull.com> | 2024-08-01 22:37:18 -0600 |
---|---|---|
committer | bd <bdunahu@operationnull.com> | 2024-08-01 22:37:18 -0600 |
commit | 64fcac482de0ba1a401cfc42066196a38661405e (patch) | |
tree | c8760685a6f28b12dedd08c00abc44ea7b731b26 /iterative-add/iterative-add-test.scm | |
parent | 7cbaa3cfc3691147c28614783c3fc3ebfdc0b042 (diff) |
Closure, coin sums, & number spiral generator
Diffstat (limited to 'iterative-add/iterative-add-test.scm')
-rw-r--r-- | iterative-add/iterative-add-test.scm | 20 |
1 files changed, 0 insertions, 20 deletions
diff --git a/iterative-add/iterative-add-test.scm b/iterative-add/iterative-add-test.scm deleted file mode 100644 index d318570..0000000 --- a/iterative-add/iterative-add-test.scm +++ /dev/null @@ -1,20 +0,0 @@ -;; -*- compile-command: "guile -L . iterative-add-test.scm"; -*- -(use-modules (srfi srfi-64) - (iterative-add)) - - -(test-begin "harness") - -(test-equal "add 0 to 1" - 1 - (iterative-add-generator 1)) - -(test-equal "add 1 to 2" - 3 - (iterative-add-generator 2)) - -(test-equal "add 2 to 6" - 8 - (iterative-add-generator 6)) - -(test-end "harness") |