]> gerrit.simantics Code Review - simantics/platform.git/blob - JavaConstructors.scl
6086a263f8562d9ec732491b53d550b6e3c8780e
[simantics/platform.git] / JavaConstructors.scl
1
2 @JavaType "org.simantics.scl.runtime.tuple.Tuple3"
3 data Tuple3 a b c =
4     @FieldNames [c0, c1, c2] 
5     Tuple3 a b c
6     
7 toTuple (Tuple3 x y z) = (x, y, z)
8
9 main = toTuple (Tuple3 "x" "y" "z")
10 --
11 (x,y,z)