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