Is there any way is Bitz to have a function that can have
a variable number of input variables?
a variable number of input variables?
Function something(s$="hello", b=1)
something() ; s$ is "hello" and b is 1
something("goodbye") ; s$ is "goodbye" and bye is 1
something("goodbye", 5) ; s$ is "goodbye" and bye is 5