]> gerrit.simantics Code Review - simantics/platform.git/blob - StringMatching1.scl
eb91fd7439d76b0285ec4d7714e6b2fb32b7f182
[simantics/platform.git] / StringMatching1.scl
1 main :: Integer
2 main = match "Bar" with
3   "Foo" -> 1
4   "Bar" -> 2
5   _ -> 3
6 --
7 2