#include "rechteck.h"
Rechteck r1(5,7);
void setup() {
// put your setup code here, to run once:
Serial.begin(9600);
while(!Serial);
Serial.println("Programm startet");
}
void loop() {
// put your main code here, to run repeatedly:
Serial.println(r1.flaeche());
Serial.println(r1.get_Breite());
delay(1000);
}