Centrado / z-blockly-tracker

0 stars 0 forks source link

### Block - Arithmetic operator #275

Open Maharajacentrado opened 1 year ago

Maharajacentrado commented 1 year ago

Block - Arithmetic operator

image

image

C++

void setup() {

}

void loop() {
/*Code*/
  0 + 0;

/* Arithmetic options 
  1. 0 - 0; // - 
  2. 0 * 0; // x 
  3. 0 / 0; // /
  4. pow(0, 0); // ^ 
*/ 
}

Originally posted by @KumaranUI in https://github.com/kreativhut/z-blockly-tracker/discussions/52#discussioncomment-2759963

Maharajacentrado commented 1 year ago

change the native code for the power block(^) as mentioned above