A test program to show that nrf52 seems to not be able to export from the online compiler. An error occurs

Dependencies:   mbed

Revision:
0:b1c9240ca79d
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Tue Oct 04 22:19:54 2016 +0000
@@ -0,0 +1,14 @@
+#include "mbed.h"
+
+DigitalOut myLED(p17);
+
+int main( void )
+{
+    while(1)
+    {
+        myLED = 1;
+        wait(0.5);
+        myLED = 0;
+        wait(0.5);
+    }
+}
\ No newline at end of file