Documentation/stash: remove mention of git reset --hard
[git.git] / t / t4051 / hello.c
blob63b1a1e4efbb4c5dee315ba56a6ad0658da0a9a5
2 static void hello(void) // Begin of hello
4 /*
5 * Classic.
6 */
7 putchar('H');
8 putchar('e');
9 putchar('l');
10 putchar('l');
11 putchar('o');
12 putchar(' ');
13 /* delete me from hello */
14 putchar('w');
15 putchar('o');
16 putchar('r');
17 putchar('l');
18 putchar('d');
19 putchar('.');
20 putchar('\n');
21 } // End of hello