Test code publishing

Dependencies:   mbed

main.cpp

Committer:
jedh
Date:
2016-02-16
Revision:
0:39d2e2c55901

File content as of revision 0:39d2e2c55901:

#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());
}