7 lines
114 B
Text
7 lines
114 B
Text
# Array test
|
|
fn main() -> int do
|
|
let arr = [1, 2, 3, 4];
|
|
# let empty = [];
|
|
let x = arr[1];
|
|
x
|
|
end
|