]> git.piffa.net Git - sketchbook_andrea/blobdiff - programming/functions/argomenti_2/argomenti_2.ino
clean up
[sketchbook_andrea] / programming / functions / argomenti_2 / argomenti_2.ino
diff --git a/programming/functions/argomenti_2/argomenti_2.ino b/programming/functions/argomenti_2/argomenti_2.ino
deleted file mode 100644 (file)
index 9be5904..0000000
+++ /dev/null
@@ -1,23 +0,0 @@
-void setup(){
-  Serial.begin(9600);
-}
-
-void loop() {
-int latoA = 4;
-int latoB = 3 ;
-
-Serial.print("Area rettangolo = ");
-Serial.println(calcolaArea(latoA, latoB));
-
-
-Serial.flush();
-exit(0);
-}
-
-// Funzioni
-
-int calcolaArea(int a, int b){
-  int area = a * b ;
-  return area;
-}
-