//dichiarazione delle funzioni
int somma (int a, int b);
void setup() {
// put your setup code here,to run once:
Serial.begin(115200);
int a = 10;
int b = 20;
int r = somma (a,b);
Serial.print("r: ");
Serial.println(r);
}
void loop() {}
// implementazione delle funzioni
int somma (int a, int b){
int res = a + b;
return res;
}