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:
- 3:ee41300c3883
- Parent:
- 1:2a6f45577cf5
- Child:
- 4:0f310f0fa9ac
File content as of revision 3:ee41300c3883:
#include "mbed.h" // Hutter_6.10.2020_ Aufgabe_1 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(); }