]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Select9.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 / Select9.scl
1 import "StandardLibrary"
2
3 s1 = [1,2,3]
4 s2 = [1,3] 
5     
6 main = do
7     C ?x :-
8         ?x <- s1
9         <!> ?x <- s2
10     select ?x where C ?x
11 --
12 [2]