Function Types
Syntax
FunctionType :
(
FunctionTypeArguments?)
->
Type
Example:
A function adding two integers together may have the following type:
(int, int) -> int
Syntax
FunctionType :
(
FunctionTypeArguments?)
->
Type
Example:
A function adding two integers together may have the following type:
(int, int) -> int