cwtests/cw03/loops.while
changeset 836 a3418ee8c404
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/cwtests/cw03/loops.while	Sun Sep 05 23:51:37 2021 +0100
@@ -0,0 +1,14 @@
+start := 1000; 
+x := start;
+y := start;
+z := start;
+while 0 < x do {
+ while 0 < y do {
+  while 0 < z do { z := z - 1 };
+  z := start;
+  y := y - 1
+ };     
+ y := start;
+ x := x - 1
+}
+