about summary refs log tree commit diff stats
path: root/shell
diff options
context:
space:
mode:
authorKartik K. Agaram <vc@akkartik.com>2021-06-03 14:55:33 -0700
committerKartik K. Agaram <vc@akkartik.com>2021-06-03 14:55:33 -0700
commit6b34a1c9bf03d46282a747efb2faf1cf1addb14e (patch)
tree34c8079feb20ab7a86fdfe334c288b7f606c8034 /shell
parentb9ad848cff8977fdb9d29915675e7a448b5292cc (diff)
downloadmu-6b34a1c9bf03d46282a747efb2faf1cf1addb14e.tar.gz
.
Diffstat (limited to 'shell')
-rw-r--r--shell/global.mu10
1 files changed, 5 insertions, 5 deletions
diff --git a/shell/global.mu b/shell/global.mu
index ff6df88c..63529012 100644
--- a/shell/global.mu
+++ b/shell/global.mu
@@ -1,14 +1,14 @@
+type global-table {
+  data: (handle array global)
+  final-index: int
+}
+
 type global {
   name: (handle array byte)
   input: (handle gap-buffer)
   value: (handle cell)
 }
 
-type global-table {
-  data: (handle array global)
-  final-index: int
-}
-
 fn initialize-globals _self: (addr global-table) {
   var self/esi: (addr global-table) <- copy _self
   compare self, 0