3 lines
106 B
Text
3 lines
106 B
Text
|
type option = None | Some (int)
|
||
|
|
||
|
let x : int = match (Some<>(42)) { Some<>((x : int)) -> x | None<> -> 0 }
|