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