A have a function with a prototype of:
void arryprnt(int[], string, int, string, string);
And a definition of:
void arryprnt(int[] a, string intro, int len, string sep=", ", string end=".") {
// stuff
}
And I'm calling it like this:
arryprnt(jimmy, "PSEUDOJIMMY: ", 15);
...When I make that call to arryprnt, I get a compiler error saying that I've used too few arguments, based off what the prototype says. "Okay," I'm thinking, "The compiler doesn't know that some of arryprnt's parameters have default values. I'll just copy the parameters from the definition into the prototype." And I did, however, I got a compiler error telling me that I was calling arryprnt with too many arguments! I could just explicitly specify all the arguments, but is there any way to call it without specifying all the arguments?