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