You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
309 B
22 lines
309 B
9 years ago
|
|
||
|
static void hello(void) // Begin of hello
|
||
|
{
|
||
|
/*
|
||
|
* Classic.
|
||
|
*/
|
||
|
putchar('H');
|
||
|
putchar('e');
|
||
|
putchar('l');
|
||
|
putchar('l');
|
||
|
putchar('o');
|
||
|
putchar(' ');
|
||
|
/* delete me from hello */
|
||
|
putchar('w');
|
||
|
putchar('o');
|
||
|
putchar('r');
|
||
|
putchar('l');
|
||
|
putchar('d');
|
||
|
putchar('.');
|
||
|
putchar('\n');
|
||
|
} // End of hello
|