about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-rw-r--r--070text.mu6
1 files changed, 6 insertions, 0 deletions
diff --git a/070text.mu b/070text.mu
index ca49c2ce..3afabfe9 100644
--- a/070text.mu
+++ b/070text.mu
@@ -319,6 +319,12 @@ recipe to-text x:boolean -> result:address:shared:array:character [
   result <- to-text n
 ]
 
+recipe to-text x:address:_elem -> result:address:shared:array:character [
+  local-scope
+  load-ingredients
+  n:number <- copy x
+  result <- to-text n
+]
 
 recipe buffer-to-array in:address:shared:buffer -> result:address:shared:array:character [
   local-scope