The default Hello World program, used when you create a new program

Fork of HelloWorld by Simon Ford

Files at this revision

API Documentation at this revision

Comitter:
zhuangbo214
Date:
Sun Jul 28 10:07:46 2013 +0000
Parent:
1:03c191369089
Commit message:
d

Changed in this revision

main.cpp Show annotated file Show diff for this revision Revisions of this file
--- a/main.cpp	Sun Jan 01 20:57:57 2012 +0000
+++ b/main.cpp	Sun Jul 28 10:07:46 2013 +0000
@@ -5,8 +5,12 @@
 int main() {
     while(1) {
         myled = 1;
-        wait(0.2);
+        wait(0.5);
         myled = 0;
-        wait(0.2);
+        wait(0.5);
     }
 }
+
+
+
+