dev/bash/gedit/hello.c

8 lines
100 B
C
Raw Permalink Normal View History

2011-04-09 19:06:44 +04:00
#include <stdio.h>
int main(int argc, char * argv[]) {
printf("Hello, C-coder!\n");
return 0;
}