]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Matching6.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 / Matching6.scl
1 import "Prelude"
2
3 main = do 
4     match 1+1 :: Integer with
5         2 -> 2
6         0 -> 0
7         1 -> 1
8 --
9 2