progs/loops.while
author Christian Urban <urbanc@in.tum.de>
Thu, 21 Nov 2019 00:49:21 +0000
changeset 696 3a5a7908517f
parent 275 618c7640cf66
permissions -rw-r--r--
added krakatau version and made the mandel program work

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
}