about summary refs log tree commit diff stats
path: root/apps/tile/data.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-09-25 09:31:52 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-25 09:34:24 -0700
commit5914ed31a9d5fb097f249cb681bc109eb3ed2a92 (patch)
tree909d1682fe0556988a8cbc9054c7f80a11d4b831 /apps/tile/data.mu
parent0ecd596b7040d6e3ccb5237004a46b0199e40cd0 (diff)
downloadmu-5914ed31a9d5fb097f249cb681bc109eb3ed2a92.tar.gz
6854
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) {