9 lines
124 B
C
9 lines
124 B
C
|
#include <stdio.h>
|
||
|
#include "module.h"
|
||
|
|
||
|
int main() {
|
||
|
printf("Hello from main!\n");
|
||
|
print_message();
|
||
|
return 0;
|
||
|
}
|