diff --git a/jcl/GMG0001.jcl b/jcl/GMG0001.jcl new file mode 100644 index 0000000..2e1c15b --- /dev/null +++ b/jcl/GMG0001.jcl @@ -0,0 +1,5 @@ +//GMG0001 JOB (GCC),'C Program', +// NOTIFY=@05054,CLASS=A,MSGCLASS=H, +// MSGLEVEL=(1,1),REGION=4M,TIME=1440 +//STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(GMG0001)' +// \ No newline at end of file diff --git a/src/GMG0001.c b/src/GMG0001.c new file mode 100644 index 0000000..0673eb5 --- /dev/null +++ b/src/GMG0001.c @@ -0,0 +1,13 @@ +// +// Created by Gregory Gauthier on 06/02/2026. +// +# include + +#ifndef HELLO_STRING +#define HELLO_STRING "Hello, World!" +#endif + +int main() { + printf("%s\n", HELLO_STRING); + return 0; +}