5 lines
94 B
Text
5 lines
94 B
Text
|
type option = Some (int) | None
|
||
|
|
||
|
let none : option = None<>
|
||
|
|
||
|
let some42 : option = Some<> (42)
|