Important changes to repositories hosted on mbed.com
Mbed hosted mercurial repositories are deprecated and are due to be permanently deleted in July 2026.
To keep a copy of this software download the repository Zip archive or clone locally using Mercurial.
It is also possible to export all your personal repositories from the account settings page.
main.cpp
- Committer:
- Hutzi
- Date:
- 2020-10-06
- Revision:
- 0:45192de7f4d2
- Child:
- 1:2a6f45577cf5
File content as of revision 0:45192de7f4d2:
#include "mbed.h"
class TestKlasse{
public:
TestKlasse(double wert) : _messwert(wert) {
_messwert=0;
}
void gibAus(){
printf("Messwert ist %f\n ",_messwert);
}
private:
double _messwert;
};
TestKlasse ausgabe(15);
int main() {
ausgabe.gibAus();
}