Commands
Syntax
def "my_command" "input1" (
// run command stuff
)Example
def "logtimes" "times, string" (
loop times (
log string
// log the input string
)
)
logtimes 5 "hello world"
// logs hello world 5 timesLast updated