List function args

Hello,

Is there a way to list the args of a function without parsing the definition?

test:{[date;syms;time] ... }

can I somehow get a list back?

(date;syms;time)

get or value on a function will help you here. It returns the params in its returned list

https://code.kx.com/wiki/Reference/value

ahh I see, missed that, thank you.