]> gerrit.simantics Code Review - simantics/platform.git/blob - Maybe2.scl
4bb6d4f97ba69fafdd7ba9e10caa7e471cc1cd2c
[simantics/platform.git] / Maybe2.scl
1 a = Just True
2 main = match a with
3     Nothing -> False
4     Just x -> x
5 --
6 true