]> gerrit.simantics Code Review - simantics/platform.git/blob - Matching6.scl
f4f7cc430ee4d81cf90164cdc5a0a2e498dace1e
[simantics/platform.git] / 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