From 15f99495a1e4bd190570ef2b35c453b5ce25192c Mon Sep 17 00:00:00 2001 From: Kayne Ruse Date: Sun, 5 Feb 2023 11:31:17 +0000 Subject: [PATCH] Aesthetics --- test/scripts/index-arrays.toy | 2 ++ 1 file changed, 2 insertions(+) diff --git a/test/scripts/index-arrays.toy b/test/scripts/index-arrays.toy index 6030574..0f483d9 100644 --- a/test/scripts/index-arrays.toy +++ b/test/scripts/index-arrays.toy @@ -71,6 +71,7 @@ assert a[0][0] == [42], "nested indexing failed"; } + //test nested indexing multipliciation assignment { var a = [[1, 2, 3], [4, 5, 6], [7, 8, 9]]; @@ -80,6 +81,7 @@ assert a == [[1, 2, 3], [4, 50, 6], [7, 8, 9]], "nested indexing multipliciation assignment failed"; } + //test combine example { fn combine(a, b, c) {