tk5-c90-projects/src/GMG0001.c

14 lines
202 B
C
Raw Normal View History

2026-02-06 16:14:40 +00:00
//
// 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;
2026-02-06 16:47:18 +00:00
}