add new demo program
All checks were successful
MVS Delete Members / delete-members (push) Successful in 7s
MVS Submit & Execute / upload-and-run (push) Successful in 55s

This commit is contained in:
Greg Gauthier 2026-02-17 21:05:31 +00:00
parent 99a47bddae
commit 426ca4d3db
2 changed files with 18 additions and 0 deletions

5
jcl/DEMOPROG.jcl Normal file
View File

@ -0,0 +1,5 @@
//DEMOPROG JOB (GCC),'C Program',
// NOTIFY=@05054,CLASS=A,MSGCLASS=A,
// MSGLEVEL=(1,1),REGION=4M,TIME=1440
//STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(DEMOPROG)'
//

13
src/DEMOPROG.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 "This is a new Hello World!"
#endif
int main() {
printf("%s\n", HELLO_STRING);
return 0;
}