Hello world

Dependencies:   mbed

Revision:
0:41f6b1cbdfcd
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Thu Mar 14 23:04:27 2019 +0000
@@ -0,0 +1,9 @@
+#include "mbed.h"
+ 
+Serial pc(USBTX, USBRX);
+int main() {
+    while(1) {
+        pc.baud(115200);
+        pc.printf("helloworld");
+    }
+}
\ No newline at end of file