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.
 
 
 
 
 
 

24 lines
334 B

/*
* Hello comment.
*/
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