Skip to content
Snippets Groups Projects
Select Git revision
  • 9f08ab572ea8ab0a49e3da0b9e83ddfa10734ea4
  • main default protected
2 results

allAsk.plt

Blame
  • Forked from hqo1e21 / COMP1204_CW2
    Source project has a limited visibility.
    example2.bb 268 B
    clear X;
    incr X;
    incr X;
    clear Y;
    incr Y;
    incr Y;
    incr Y;
    clear Z;
    while X not 0 do;
       clear W;
       while Y not 0 do;
          incr Z;
          incr W;
          decr Y;
       end;
       while W not 0 do;
          incr Y;
          decr W;
       end;
       decr X;
    end;
    
    debug X;
    debug Y;
    debug Z;