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 21:33:24 -0700
committerKartik Agaram <vc@akkartik.com>2020-10-25 21:35:24 -0700
commit5f5579e1682fbcea3340a036ef57684cacb835e4 (patch)
treeac5798c83cca7f5d5fe86d1aba954ebd5c7e0abd /apps/tile/data.mu
parent2d7960d493c11ba6286193ec01b7f6771cd0b695 (diff)
downloadmu-5f5579e1682fbcea3340a036ef57684cacb835e4.tar.gz
7107 - tile: file handles
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 7575461c..8a23fea9 100644
--- a/apps/tile/data.mu
+++ b/apps/tile/data.mu
@@ -38,6 +38,7 @@ type value {
   int-data: int  # if type = 0
   text-data: (handle array byte)  # if type = 1
   array-data: (handle array int)  # if type = 2
+  file-data: (handle buffered-file)  # if type = 3
 }
 
 type table {