Skip to content

Commit

Permalink
Array script snippet file on test folder.
Browse files Browse the repository at this point in the history
  • Loading branch information
nthnn committed Sep 20, 2024
1 parent 8991a1f commit 8b7d47a
Showing 1 changed file with 11 additions and 0 deletions.
11 changes: 11 additions & 0 deletions test/array.zhv
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
#!/bin/zhivo

val nums = [1, 2, 3];
render nums + "\r\n";

nums[1] = [2.25, 2.5, 2.75];
render nums + "\r\n";

nums[1][1] = "Test";
render nums + "\r\n";
render nums[1][2] + "\r\n";

0 comments on commit 8b7d47a

Please sign in to comment.