Actually, it's possible when using my plug-ins, but it will be slower and more error prone.
call function name "PrintArgs", 4, "This", "is", "a", "test"
print ""
call function name "PrintArgs", 5, "This", "is", "yet", "another", "test"
wait key
end
function PrintArgs()
local S as string
local ArgList as dword
local ArgCount as integer
ArgList = open arglist()
` First argument is the number of strings that follow
ArgCount = arglist integer(ArgList)
for i = 1 to ArgCount
` Subsequent arguments are all strings
S = arglist string$(ArgList)
print S
next
endfunction
There's also another example written by Diggsey that
emulates the C printf function.