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