Tagged Questions
3
votes
3answers
1k views
Read STDIN (SYSIN) in COBOL
I want to read the lines out of STDIN (aka SYSIN) in COBOL. For now I just want to print them out so that I know I've got them. From everything I'm reading it looks like this should work:
...
2
votes
1answer
588 views
COBOL: SYSIN JCL for compiling source from PDS
I'm just starting COBOL, and ran into this with JCL... How do I compile a basic cobol program from my PDS, I know through instream it would just be
//SYSIN DD *
code code code
/*
I tried something ...