]> gerrit.simantics Code Review - simantics/platform.git/blob - Maybe3.scl
1886b0797603001ad248a41c9cb801786bd7ffad
[simantics/platform.git] / Maybe3.scl
1 a = Just "ABC"
2 main = match a with
3     Nothing -> "Incorrect"
4     Just x -> x
5 --
6 ABC