dev/c/cmake_hello/hello.c

9 lines
98 B
C
Raw Permalink Normal View History

2012-05-22 13:37:41 +04:00
#include <stdio.h>
int main (int argc, char *argv[])
{
puts ("Hello world!\n");
return 0;
}