]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/scl/Set1.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 / Set1.scl
1 import "StandardLibrary"
2
3 s1 = Set.set [3,2,1,4]
4 s2 = Set.set [9,8,3,2]
5 s1s2 = Set.union s1 s2
6
7 main = show s1s2
8 --
9 set [1, 2, 3, 4, 8, 9]