mirror of
https://github.com/bearlanguageorg/bear.git
synced 2026-08-26 15:17:19 +00:00
11 lines
136 B
Plaintext
11 lines
136 B
Plaintext
// debug: basic arr[0]
|
|
|
|
fn get_first(arr) {
|
|
return arr[0]
|
|
}
|
|
|
|
fn main() {
|
|
let nums = [10, 20, 30]
|
|
println(get_first(nums))
|
|
}
|