diff options
-rw-r--r-- | shell/global.mu | 10 |
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 |