Hello ...
I need help with passing arguments to a function when there are more than 1 arguments ...
for example, when I want to call function something(id) i do:
set_task(0.1, "something", id) and that works perfectly ...
but how do I call function something(id, number) ?
set_task(0.1, "something", id, number) <- doesn't work
it passes only first argument ...
any help ?