]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/scl/Maybe3.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / tests / scl / Maybe3.scl
1 a = Just "ABC"
2 main = match a with
3     Nothing -> "Incorrect"
4     Just x -> x
5 --
6 ABC