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