Format the example code nice.

This commit is contained in:
Christoph Heiss 2016-04-15 10:12:16 +02:00
parent 306d629d0b
commit dd66eb3376

View file

@ -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 <stdio.h>
main() {
int main()
{
printf(“Hello World”);
return 0;
}
```