c88d6dcb4f
Adds useful descriptions to ones that were lacking them, updates ones that were innacurate, etc.
11 lines
186 B
C
11 lines
186 B
C
/* vim:tabstop=4 shiftwidth=4 noexpandtab
|
|
*
|
|
* prints "Hello World!" to standard out.
|
|
*/
|
|
#include <stdio.h>
|
|
|
|
int main(int argc, char ** argv) {
|
|
printf("Hello World!\n");
|
|
return 0;
|
|
}
|