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-10-25 17:41:06 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-25 18:14:12 -0700
commit8a6ad45d8d26c60b62a2a7ac8d594b3c4d1dbc45 (patch)
treef021f4413da5f0b2e532fb7fd59f874355c366b1 /apps/tile/data.mu
parent517ef9f64f32ea6592c7b802fd94391254daf86c (diff)
downloadmu-8a6ad45d8d26c60b62a2a7ac8d594b3c4d1dbc45.tar.gz
7100 - tile: render string literals
Diffstat (limited to 'apps/tile/data.mu')
-rw-r--r--apps/tile/data.mu1
1 files changed, 1 insertions, 0 deletions
diff --git a/apps/tile/data.mu b/apps/tile/data.mu
index 18b7e7ce..f69ed645 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -36,6 +36,7 @@ type word {
 type value {
   type: int
   int-data: int  # if type = 0
+  text-data: (handle array byte)  # if type = 1
 }
 
 type table {