Update main.cpp

This commit is contained in:
Alexandre B 2024-07-07 13:00:59 -04:00
parent e9a688beb2
commit 7d9c8d890a

View File

@ -7,15 +7,12 @@
int myFunction(int, int);
void setup() {
// put your setup code here, to run once:
int result = myFunction(2, 3);
Serial.begin(115200);
Serial.println();
Serial.println("Running setup ...");
}
void loop() {
// put your main code here, to run repeatedly:
}
// put function definitions here:
int myFunction(int x, int y) {
return x + y;
}