Details
-
Bug
-
Status: Closed
-
Major
-
Resolution: Fixed
-
None
-
None
Description
Even though the following function only takes one input argument, if it is called with multiple input arguments, the extraneous arguments are ignored rather than throwing an error:
triple = function(double a) return (double z) { z = a*3; } x = triple(10,11,12) print(x)
(This outputs 30.0)