~ chicken-core (master) a21490917e114017e080ee2d647f328d74871a8f
commit a21490917e114017e080ee2d647f328d74871a8f
Author: felix <felix@call-with-current-continuation.org>
AuthorDate: Mon Jul 27 19:50:16 2026 +0200
Commit: felix <felix@call-with-current-continuation.org>
CommitDate: Mon Jul 27 19:50:16 2026 +0200
replace unicode char with ascii arrow
diff --git a/manual/Module (scheme base) b/manual/Module (scheme base)
index 277bb156..5c3e7495 100644
--- a/manual/Module (scheme base)
+++ b/manual/Module (scheme base)
@@ -688,7 +688,7 @@ the first set of bindings is visible and initialized, and so on.
(let ((a 'a) (b 'b) (x 'x) (y 'y))
(let*-values (((a b) (values x y))
((x y) (values a b)))
- (list a b x y))) ⟹ (x y x y)
+ (list a b x y))) ===> (x y x y)
==== Sequencing
@@ -1586,13 +1586,13 @@ For instance, the following record-type definition
defines kons to be a constructor, kar and kdr to be accessors, set-kar! to be a
modifier, and pare? to be a predicate for instances of <pare>.
- (pare? (kons 1 2)) ⟹ #t
- (pare? (cons 1 2)) ⟹ #f
- (kar (kons 1 2)) ⟹ 1
- (kdr (kons 1 2)) ⟹ 2
+ (pare? (kons 1 2)) ===> #t
+ (pare? (cons 1 2)) ===> #f
+ (kar (kons 1 2)) ===> 1
+ (kdr (kons 1 2)) ===> 2
(let ((k (kons 1 2)))
(set-kar! k 3)
- (kar k)) ⟹ 3
+ (kar k)) ===> 3
=== Libraries
Trap