]> gerrit.simantics Code Review - simantics/platform.git/blob - scl/StringMatching1.scl
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / scl / StringMatching1.scl
1 main :: Integer
2 main = match "Bar" with
3   "Foo" -> 1
4   "Bar" -> 2
5   _ -> 3
6 --
7 2