User:Mathijs van Oosterhoudt/formula

From XPUB & Lens-Based wiki
       #include human_compiler
       
       data = find_data();        //Find interesting or fascinating sets of data, or acquire through input.
       
       if(data == analogue){
               digitize(data);        //If this data is analogue, digitize it.
       }
       
       loop{
       
               choice = decide(3);
       
               if(choice == 1){
                       create(algorithm);        //Create an algorithm that is linked to the data.
                       mix(data, algorithm);        //Mix the data using this algorithm.
               }
       
               if(choice == 2){
                       alter(data);        //Alter the data in a way linked to the data.
               }
       
               if(choice == 3){
                       create(algorithm);        //Create an algorithm that is linked to the data.
                       alter(mata);        //Alter the data in a way linked to the data.
                       mix(data, algorithn);        //Mix the data using this algorithm.
               }
       
       }
       
       combine(data);        //Combine these sets of data.
       
       analogueize(data);        //Convert it to analogue data.
       
       present(data);        //Present this data in an analogue matter.