13 lines
218 B
C
13 lines
218 B
C
#include <stdio.h>
|
|
#include <stdbool.h>
|
|
#include "testlib.h"
|
|
|
|
#ifndef MAIN_MESSAGE
|
|
#define MAIN_MESSAGE "Hello from main!"
|
|
#endif
|
|
|
|
int main() {
|
|
printf("%s\n", MAIN_MESSAGE);
|
|
print_message();
|
|
return 0;
|
|
} |