Hello world in the IBM PL/I language on the mainframe - M125

head over to sign our petition to IBM here: and here is the program with the JCL: //MOSHIXA JOB (PLI),’HELLO ’,MSGCLASS=H,REGION=100M, // CLASS=A,TIME=1440,MSGLEVEL=(1,1),NOTIFY=MOSHIX //PLICLG EXEC IBMZCPLG,LNGPRFX=IEL420, // PARM=’OBJECT,OPTIONS,SOURCE,XREF,NEST,OPTIMIZE=02,REF,LIST’ //SYSPRINT DD SYSOUT=* // DD * HELLO: PROCEDURE OPTIONS(MAIN); PUT LIST(’HELLO,WORLD’); END HELLO; /* //
Back to Top