sample hello world to test changes
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 26s

This commit is contained in:
Gregory Gauthier 2026-02-06 09:41:01 +00:00
parent b1ebfc8543
commit dda2f87d48
2 changed files with 17 additions and 0 deletions

4
jcl/SIMPLE.jcl Normal file
View File

@ -0,0 +1,4 @@
//SIMPLE1 JOB (SIMPLE),'SIMPLE HELLO PROGRAM',NOTIFY=@05054,CLASS=A,
// MSGCLASS=H,REGION=4M,TIME=1440
//STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(SIMPLE)'
//

13
src/simple.c Normal file
View File

@ -0,0 +1,13 @@
//
// 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;
}