web: home-page: Add new page
[lcapit-junk-code.git] / stdin.c
blobbf74aa913a7ba5546bd2e56b59454bbfe9523212
1 /*
2 * This program gets its source from stdin when being
3 * compiled, for instance:
4 *
5 * $ cc -o stdin stdin.c
6 * #include <stdio.h>
7 * int main(void)
8 * {
9 * printf("Hello, world!\n");
10 * return 0;
11 * }
12 * ^D
13 * $ ./stdin
14 * Hello, world!
16 #include "/dev/stdin"