Skip to content

Commit

Permalink
tests: make array_oop actually test something
Browse files Browse the repository at this point in the history
  • Loading branch information
vil02 committed Feb 4, 2024
1 parent d0ef1a8 commit ab68227
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/array_oop/main.jule
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@
fn main() {
let arr0: [5]i32 = [0,0,0,0,0]
let arr1: [6]i32 = [9,16,32,64,128,256]
outln(arr0.len)
outln((arr1).len)
assert(arr0.len == 5)
assert((arr1).len == 6)
}

0 comments on commit ab68227

Please sign in to comment.