tk5-c90-projects/src/GMG0001.c
Gregory Gauthier 91c70b17cf
Some checks failed
MVS Delete Members / delete-members (push) Failing after 14s
MVS Submit & Execute / upload-and-run (push) Failing after 2m26s
try job submission yet again
2026-02-06 17:03:31 +00:00

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