about summary refs log tree commit diff stats
path: root/prototypes/tile/7.mu
diff options
context:
space:
mode:
authorKartik Agaram <vc@akkartik.com>2020-08-22 10:10:54 -0700
committerKartik Agaram <vc@akkartik.com>2020-08-22 10:14:37 -0700
commit66daf3cc1f479300cf3e58278a1167bd862d855a (patch)
tree323e8936cfc599b1255cb007b410bb35a7ac4a08 /prototypes/tile/7.mu
parente8ffaf29cea786e1c1266273c65bdb5eb42b39ab (diff)
downloadmu-66daf3cc1f479300cf3e58278a1167bd862d855a.tar.gz
6720
Diffstat (limited to 'prototypes/tile/7.mu')
-rw-r--r--prototypes/tile/7.mu4
1 files changed, 2 insertions, 2 deletions
diff --git a/prototypes/tile/7.mu b/prototypes/tile/7.mu
index 42182745..129cb616 100644
--- a/prototypes/tile/7.mu
+++ b/prototypes/tile/7.mu
@@ -17,8 +17,8 @@
 
 # To run unit tests:
 #   $ ./a.elf test
-fn main args-on-stack: (addr array (addr array byte)) -> exit-status/ebx: int {
-  var args/eax: (addr array (addr array byte)) <- copy args-on-stack
+fn main args-on-stack: (addr array addr array byte) -> exit-status/ebx: int {
+  var args/eax: (addr array addr array byte) <- copy args-on-stack
   var tmp/ecx: int <- length args
   $main-body: {
     # if (len(args) > 1 && args[1] == "test") run-tests()