From dd66eb3376c199e397d04554745ea0ac5526d1b1 Mon Sep 17 00:00:00 2001 From: Christoph Heiss Date: Fri, 15 Apr 2016 10:12:16 +0200 Subject: [PATCH] Format the example code nice. --- README.md | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/README.md b/README.md index 1265ff7..1d9a336 100644 --- a/README.md +++ b/README.md @@ -43,8 +43,12 @@ The Sublime Text client is platform independent, although only OS X and Linux ar 4. Content of hello_world.c:
 ```c #include 

 - main() {
 + + int main() + {
 printf(“Hello World”); + + return 0; }
 ``` @@ -55,7 +59,7 @@ The Sublime Text client is platform independent, although only OS X and Linux ar - Use Run - Select hello_world -7. Program will now run on the selected Wallaby and output will be piped into the Sublime Text console
(View → Show Console) +7. Program will now run on the selected Wallaby and output will be piped into the Sublime Text console
 (View → Show Console) ## Credits