]> gerrit.simantics Code Review - simantics/platform.git/blob - IfWithoutElse.scl
824358b2dae609bdb891e3a9f0e72b2327e01542
[simantics/platform.git] / IfWithoutElse.scl
1 import "Prelude"
2
3 main = do
4     x = ref 3
5     if 2 > 1
6     then x := 4
7     if 1 > 2
8     then x := 8
9     getRef x
10 --
11 4