This repository has been archived on 2021-08-25. You can view files and clone it, but cannot push or open issues or pull requests.
shellbuild/example/hello.c
2021-08-25 19:43:37 +03:00

7 lines
118 B
C

#include <stdio.h>
#include "message.h"
int main() {
printf("%s\n\n", generate_hello_message());
return 0;
}