]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/FunctorM1.scl
List the unsatisfied dependencies in CanvasContext
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / FunctorM1.scl
1 import "Prelude"\r
2 \r
3 main = sequence [[1,2], [3,4], [5,6]]\r
4 /*\r
5   x <- [1,2]\r
6   y <- [3,4]\r
7   z <- [5,6]\r
8   return [x,y,z]\r
9 */  \r
10 --\r
11 [[1, 3, 5], [1, 3, 6], [1, 4, 5], [1, 4, 6], [2, 3, 5], [2, 3, 6], [2, 4, 5], [2, 4, 6]]