]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/CHRSelect1.scl
(refs #7371) Support for select keyword for CHR constraints
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / org / simantics / scl / compiler / tests / scl / CHRSelect1.scl
1 module {
2     features = [chr]
3 }
4 import "StandardLibrary"
5
6 main = select (?a,?b) where
7     ?a <- [1,2,3]
8     ?b <- [2,3,4]
9 --
10 [(1,2), (1,3), (1,4), (2,2), (2,3), (2,4), (3,2), (3,3), (3,4)]