Another blinky... this one for testing hg pushes

Revision:
0:a57d9a3d7532
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main_blinky.cpp	Fri Dec 07 15:24:03 2018 -0600
@@ -0,0 +1,13 @@
+#include "mbed.h"
+
+DigitalOut myled(LED1);
+
+int main() {
+    
+    while(1) {
+        myled = 1;
+        wait(0.2);
+        myled = 0;
+        wait(0.2);
+    }
+}