make public

Dependencies:   mbed

Revision:
0:c21bfc9b3a35
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/main.cpp	Fri Mar 26 10:20:29 2021 +0000
@@ -0,0 +1,10 @@
+#include "mbed.h" // add "." to tell compiler that it requires a .h file.
+int a = 10; // add semi-colon
+int b = 20; // use lower case b as line 7 call the lower case.
+int main() {
+    int c = a + b; // add semi-colon
+    printf("the final answer = %d\n", c);
+}
+
+
+