Skip to content

Function & Array

Compare
Choose a tag to compare
@BHznJNs BHznJNs released this 30 Mar 07:29
· 182 commits to master since this release
> 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,
]