Commit 09d658e53392521206b7b9e70d61a474a268271d

Thomas de Grivel 2023-09-08T09:52:33

fix array tests

diff --git a/README.md b/README.md
index 8873dd2..45a7f07 100644
--- a/README.md
+++ b/README.md
@@ -126,7 +126,8 @@ Script interpreter.
    - modules
      - DONE symbols
      - DONE as facts
-     - autoload (remember load time, compare with file time)
+     - DONE autoload (remember load time, compare with file time)
+     - defmodule
    - functions
      - return
      - def
diff --git a/test/ic3/array.out.expected b/test/ic3/array.out.expected
index 2ce1f86..d45f1e9 100644
--- a/test/ic3/array.out.expected
+++ b/test/ic3/array.out.expected
@@ -1,11 +1,15 @@
 (u8) {0, 1}
 0
 1
+(u8) {0, 1}
+0
+1
 Array.data(a, (uw) {0})
 Array.data(a, (uw) {1})
 0
 1
 (u8) {{0, 1}, {2, 3}}
+(u8) {{0, 1}, {2, 3}}
 0
 1
 2