How to declare a function suffixsen : string list -> string list ???
Tnx.
|
|
The syntax to define a function with one argument in sml is:
or
if you want to specify the type explicitly. So to define a function named
Edit in response to you comment: In order to append "son" to each string in the list, you should look at the [1] |
|||||||||||
|
|
After declaring types inside the parens, declare the function's return type on the outside with
|
|||
|
|