progs/loops.while
author cu
Wed, 18 Oct 2017 12:33:00 +0100
changeset 523 25e74e6fe2f7
parent 275 618c7640cf66
permissions -rw-r--r--
update

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
}