send output to the 1403
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 34s
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 34s
This commit is contained in:
parent
918bf539e8
commit
bc4a50d475
7
jcl/SIMPLE2.jcl
Normal file
7
jcl/SIMPLE2.jcl
Normal 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
13
src/SIMPLE2.c
Normal 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;
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user