I have a piece of code that looks like this:
myfunction(a, b, c)
myfunction(d, e, f)
myfunction(g, h, i)
myfunction(j, k, l)
The number of arguments do not change, but the function has to be called consecutively with different values each time. These values are not automatically generated and are manually inputted. Is there an inline solution to do this without creating a function to call this function? Something like:
myfunction(a, b, c)(d, e f)(g, h, i)(j, k, l)
Any help appreciated. Thanks in advance!