]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/scl/ConjunctionMacro.scl
List the unsatisfied dependencies in CanvasContext
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / scl / ConjunctionMacro.scl
1 (&&) :: Boolean -> (<e> Boolean) -> <e> Boolean\r
2 a && b = if a then b else False\r
3 \r
4 main = False && fail "Should not be evaluated!"\r
5 --\r
6 false