Function & Array
> test_func = fn(i $num) {i + 1}
> test_func(1)
= 2
> test_arr = [1, 2, 3]
= [
1, 2, 3,
]
> push(test_arr, 4)
> test_arr
= [
1, 2, 3, 4,
]
> test_func = fn(i $num) {i + 1}
> test_func(1)
= 2
> test_arr = [1, 2, 3]
= [
1, 2, 3,
]
> push(test_arr, 4)
> test_arr
= [
1, 2, 3, 4,
]