about summary refs log tree commit diff stats
path: root/apps/tile/data.mu
diff options
context:
space:
mode:
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index a4ee5b4c..40b24df7 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -51,10 +51,10 @@ type table {
   next: (handle table)
 }
 
-#? type result {
-#?   data: (handle value-stack)
-#?   error: (handle array byte)  # single error message for now
-#? }
+type result {
+  data: value-stack
+  error: (handle array byte)  # single error message for now
+}
 
 # if 'out' is non-null, save the first word of the program there
 fn initialize-program _program: (addr program), out: (addr handle word) {