about summary refs log tree commit diff stats
diff options
context:
space:
mode:
-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
amp;id=5e0ae917d07740b9a06f3255591245acfcd9389e'>5e0ae917 ^
15b98801 ^
5e0ae917 ^

ae470b42 ^
15b98801 ^
5e0ae917 ^


15b98801 ^
5e0ae917 ^




1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25