Welcome to mirror list, hosted at ThFree Co, Russian Federation.

hello.c « t4051 « t - git.kernel.org/pub/scm/git/git.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 73e767e1783d8ab97d7a45297a173b1bed9f00a2 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24

/*
 * 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