Version: v0.7.1 - Beta.  We welcome contributors & feedback.

Meta.getArgs

Meta.getArgs() -> list

Description

Get a List of the arguments passed to the current function.

doSomething(1, 2, 3)
//= [1, 2, 3]

fn doSomething {
    print(Meta.getArgs())
}