dev/bash/gedit/hello.c
2011-04-09 19:06:44 +04:00

8 lines
100 B
C

#include <stdio.h>
int main(int argc, char * argv[]) {
printf("Hello, C-coder!\n");
return 0;
}