about summary refs log tree commit diff stats
path: root/070text.mu
diff options
context:
space:
mode:
Diffstat (limited to '070text.mu')
-rw-r--r--070text.mu8
1 files changed, 8 insertions, 0 deletions
diff --git a/070text.mu b/070text.mu
index 4dc138a7..ca49c2ce 100644
--- a/070text.mu
+++ b/070text.mu
@@ -312,6 +312,14 @@ recipe to-text n:number -> result:address:shared:array:character [
   }
 ]
 
+recipe to-text x:boolean -> result:address:shared:array:character [
+  local-scope
+  load-ingredients
+  n:number <- copy x:boolean
+  result <- to-text n
+]
+
+
 recipe buffer-to-array in:address:shared:buffer -> result:address:shared:array:character [
   local-scope
   load-ingredients