4 lines
94 B
Text
4 lines
94 B
Text
|
fun : int * int -> int
|
||
|
fst ((x : int), (y : int)) = fst (y, x)
|
||
|
|
||
|
let main : int = fst 3 4
|