hhh

Dependencies:   mbed

poo.cpp

Committer:
2bv14ei073
Date:
2016-12-01
Revision:
1:4346149b11d2

File content as of revision 1:4346149b11d2:

#include "mbed.h"
 
Timer t;
 
int main() {
    t.start();
    printf("Hello World!\n");
    t.stop();
    printf("The time taken was %f seconds\n", t.read());
}