sample hello world to test changes
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 26s
All checks were successful
MVS Upload & Execute / upload-and-run (push) Successful in 26s
This commit is contained in:
parent
b1ebfc8543
commit
dda2f87d48
4
jcl/SIMPLE.jcl
Normal file
4
jcl/SIMPLE.jcl
Normal 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
13
src/simple.c
Normal 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;
|
||||||
|
}
|
||||||
Loading…
Reference in New Issue
Block a user