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