t / t4051 / hello.con commit Merge branch 'nd/init-core-worktree-in-multi-worktree-world' (53eb85e)
   1
   2static void hello(void) // Begin of hello
   3{
   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