5 lines
75 B
Text
5 lines
75 B
Text
fn main() -> int do
|
|
let arr = [1, 2, 3];
|
|
let x = arr[0];
|
|
x
|
|
end
|