aboutsummaryrefslogtreecommitdiff
path: root/examples/mod7.scm
diff options
context:
space:
mode:
authorMasaya Tojo <masaya@tojo.tokyo>2024-06-24 00:06:23 +0900
committerMasaya Tojo <masaya@tojo.tokyo>2024-06-24 00:06:23 +0900
commitf8583f9a85f54d0a7b4902d0d23b1b83f387b593 (patch)
tree266eed4c18affaeac756dee300064e55f515d83b /examples/mod7.scm
parent6464288c0518db387657a16082fe541c253c463a (diff)
Rename function from `<>` to `op`
Diffstat (limited to 'examples/mod7.scm')
-rw-r--r--examples/mod7.scm4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/mod7.scm b/examples/mod7.scm
index 119c401..f21e975 100644
--- a/examples/mod7.scm
+++ b/examples/mod7.scm
@@ -8,9 +8,9 @@
(import scheme
(chicken module)
(only (chicken base) assert))
- (export <>)
+ (export op)
- (define (<> x y)
+ (define (op x y)
(assert (integer? x))
(assert (integer? y))
(assert (not (zero? x)))