6 lines
109 B
Text
6 lines
109 B
Text
/* error : formals are fewer then actuals */
|
|
let
|
|
function g (a:int , b:string):int = a
|
|
in
|
|
g(3,"one",5)
|
|
end
|