send output to the 1403
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 34s

This commit is contained in:
Gregory Gauthier 2026-02-06 11:13:50 +00:00
parent 918bf539e8
commit bc4a50d475
2 changed files with 20 additions and 0 deletions

7
jcl/SIMPLE2.jcl Normal file
View File

@ -0,0 +1,7 @@
//SIMPLE2 JOB (GCC),'Simple Hello Example',
// NOTIFY=@05054,CLASS=A,MSGCLASS=A,
// MSGLEVEL=(1,1),REGION=4M,TIME=1440
//* Compile Step - comments allowed in JCL!
//STEP1 EXEC GCCCG,INFILE='@05054.SRCLIB.C(SIMPLE2)'
//

13
src/SIMPLE2.c Normal file
View File

@ -0,0 +1,13 @@
//
// SIMPLE 2 SAMPLE
//
# include <stdio.h>
#ifndef HELLO_STRING
#define HELLO_STRING "Hello, World!"
#endif
int main() {
printf("%s\n", HELLO_STRING);
return 0;
}