oadl::nargs - returns the number of arguments
passed to the currently executing procedure
oadl::nargs()
Returns the number of arguments passed to the currently executing procedure
None
proc foo()
{
"nargs() = ", oadl::nargs(), '\n';
}
foo("one")
nargs() = 1
foo("one","two","three")
nargs() = 3