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-24 20:44:13 -0700
committerKartik Agaram <vc@akkartik.com>2020-09-24 20:44:13 -0700
commita04f816cff4a2a558a522b859f8339637db6b726 (patch)
treec71cb553e4d6fcbdf4e23bbd719ba26133cdcd4f /apps/tile/data.mu
parentb27a1a2523ed0733329832b7010a7939e3b72114 (diff)
downloadmu-a04f816cff4a2a558a522b859f8339637db6b726.tar.gz
6852 - tile: placeholder for lexical scopes
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu10
1 files changed, 10 insertions, 0 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index 44d9b2d6..bdd42ce5 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -40,6 +40,16 @@ type value {
   box-data: (handle line)
 }
 
+type bind {
+  key: (handle array byte)
+  value: value
+}
+
+type table {
+  data: (handle array bind)
+  next: (handle table)
+}
+
 #? type result {
 #?   data: (handle value-stack)
 #?   error: (handle array byte)  # single error message for now