Files
c-course/c-basic/main.c

11 lines
81 B
C

#include <stdio.h>
#include "hello.c"
int main()
{
hello();
return 0;
}