aboutsummaryrefslogtreecommitdiffhomepage
path: root/std/Char.bruijn
diff options
context:
space:
mode:
Diffstat (limited to 'std/Char.bruijn')
-rw-r--r--std/Char.bruijn6
1 files changed, 6 insertions, 0 deletions
diff --git a/std/Char.bruijn b/std/Char.bruijn
index f717346..89ef425 100644
--- a/std/Char.bruijn
+++ b/std/Char.bruijn
@@ -62,3 +62,9 @@ alpha-numeric? φ or? numeric? alpha? ⧗ Char → Boolean
:test (alpha-numeric? '0') (true)
:test (alpha-numeric? '9') (true)
:test (alpha-numeric? '$') (false)
+
+# returns true if char is space
+space? eq? ' '
+
+:test (space? ' ') (true)
+:test (space? '2') (false)