#include <stdio.h>
#include <stdlib.h>
#define NAME "jhx"
#define HOME "Earth"
int main(void) {
(void)fprintf(stdout,
"Hello, my name is %s and I'm from %s!\n",
NAME, HOME);
return EXIT_SUCCESS;
}
and...
$ echo "Check out my projects and have fun!"
...last but not least:
$ python -c 'print("Stay Open!")'