Skip to content
Snippets Groups Projects
Select Git revision
  • 5e1fb1b972f805cf3b4d50fca9cc4c0eadb079d7
  • master default protected
  • dancing-game-music
  • walking-game-map
  • walking_game
  • running-game
  • dancing-game-dev
  • device-page-dev-new
  • leon-games-page
9 results

build_ssl.sh

Blame
  • 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;