]> gerrit.simantics Code Review - simantics/platform.git/blob - While3.scl
0e0d4aff87c48d1f3d9ade72868a4884f0f41ec2
[simantics/platform.git] / While3.scl
1 import "Prelude"
2
3 main = do
4     a = ref 1
5     b = ref 0
6     while (getRef a < 5) do
7         b := getRef b + 1
8         a := getRef a + 1
9     getRef b             
10 --
11 4