4 lines
72 B
Text
4 lines
72 B
Text
|
fun : [`a] `a -> `a
|
||
|
id (x : `a) = x
|
||
|
|
||
|
let main : int = id<int> (37)
|