From f8583f9a85f54d0a7b4902d0d23b1b83f387b593 Mon Sep 17 00:00:00 2001 From: Masaya Tojo Date: Mon, 24 Jun 2024 00:06:23 +0900 Subject: Rename function from `<>` to `op` --- algebraic-structures.group.scm | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) (limited to 'algebraic-structures.group.scm') diff --git a/algebraic-structures.group.scm b/algebraic-structures.group.scm index 5cac19f..ab2ba7e 100644 --- a/algebraic-structures.group.scm +++ b/algebraic-structures.group.scm @@ -1,6 +1,6 @@ -(functor ((algebraic-structures group) (M (<> unit inv))) - (<> unit inv pow) - (import (only M <> unit inv) +(functor ((algebraic-structures group) (M (op unit inv))) + (op unit inv pow) + (import (only M op unit inv) scheme (chicken base)) @@ -13,4 +13,4 @@ (if (= i 0) acc (loop (sub1 i) - (<> acc x))))))) + (op acc x))))))) -- cgit v1.2.3