14 lines
202 B
C
14 lines
202 B
C
//
|
|
// Created by Gregory Gauthier on 06/02/2026.
|
|
//
|
|
# include <stdio.h>
|
|
|
|
#ifndef HELLO_STRING
|
|
#define HELLO_STRING "Hello, World!"
|
|
#endif
|
|
|
|
int main() {
|
|
printf("%s\n", HELLO_STRING);
|
|
return 0;
|
|
}
|