]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/StringMatching1.scl
(refs #7307) Added features field to SCL module header
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / StringMatching1.scl
1 main :: Integer
2 main = match "Bar" with
3   "Foo" -> 1
4   "Bar" -> 2
5   _ -> 3
6 --
7 2