#include "Arduino.h"
void setup() {
// put your setup code here, to run once:
Serial.begin(115200);
Serial.println("**** Hello world ****");
}
void loop() {
// put your main code here, to run repeatedly:
int a = 5;
int b = 6;
int c = 6;
if (a > b)
{
Serial.println("a>b");
}
if (b == c)
{
Serial.println(" b != c");
}
while (true);
}