2025-02-19 16:17:08 +01:00

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;
}