Test code publishing

Dependencies:   mbed

Revision:
0:39d2e2c55901
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Feb 16 20:02:28 2016 +0000
@@ -0,0 +1,11 @@
+#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());
+}