summaryrefslogtreecommitdiff
path: root/t/t4051/hello.c
blob: 63b1a1e4efbb4c5dee315ba56a6ad0658da0a9a5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
 
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