Skip to content

Commit ff733e0

Browse files
Merge pull request #107 from openmainframeproject/prepare-release
Prepare release
2 parents 5ec6b48 + 4b343c2 commit ff733e0

File tree

9 files changed

+31
-24
lines changed

9 files changed

+31
-24
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
11
.DS_Store
22
*~
3+
COBOL Programming with VSCode.pdf

COBOL Programming with VSCode.pdf

-11.6 MB
Binary file not shown.

Labs/cbl/CBL0002.cobol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*-----------------------
22
IDENTIFICATION DIVISION.
33
*-----------------------
4-
PROGRAM-ID. CBL0001
4+
PROGRAM-ID. CBL0002
55
AUTHOR. Otto B. Fun.
66
*--------------------
77
ENVIRONMENT DIVISION.

Labs/cbl/CBL0005.cobol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*-----------------------
22
IDENTIFICATION DIVISION.
33
*-----------------------
4-
PROGRAM-ID. CBL0004
4+
PROGRAM-ID. CBL0005
55
AUTHOR. Otto B. Formatted
66
*--------------------
77
ENVIRONMENT DIVISION.

Labs/cbl/CBL0011.cobol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*-----------------------
22
IDENTIFICATION DIVISION.
33
*-----------------------
4-
PROGRAM-ID. CBL0010
4+
PROGRAM-ID. CBL0011
55
AUTHOR. Otto B. Intrisic.
66
*--------------------
77
ENVIRONMENT DIVISION.

Labs/cbl/CBL0012.cobol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
*-----------------------
22
IDENTIFICATION DIVISION.
33
*-----------------------
4-
PROGRAM-ID. CBL0011
4+
PROGRAM-ID. CBL0012
55
AUTHOR. Otto B. Intrisic.
66
*--------------------
77
ENVIRONMENT DIVISION.

Labs/cbl/COBOL.cobol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IDENTIFICATION DIVISION.
2-
PROGRAM-ID. ADDONE.
2+
PROGRAM-ID. COBOL.
33
AUTHOR. STUDENT.
44
*
55
ENVIRONMENT DIVISION.

Labs/cbl/PAYROL0X.cobol

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
IDENTIFICATION DIVISION.
2-
PROGRAM-ID. PAYROL00.
2+
PROGRAM-ID. PAYROL0X.
33
DATA DIVISION.
44
WORKING-STORAGE SECTION.
55
****** Variables for the report

README.md

Lines changed: 24 additions & 18 deletions
Original file line numberDiff line numberDiff line change
@@ -8,10 +8,31 @@ This project is a set of training materials and labs for a "Getting Started" lev
88

99
## How to use
1010

11-
There are two sets of materials available
11+
To begin, select a recent [release](https://github.com/openmainframeproject/cobol-programming-course/releases) of the course. Under a given release, you should see two assets.
1212

13-
- [Chapters](https://github.com/openmainframeproject/cobol-programming-course/blob/master/COBOL%20Programming%20with%20VSCode.pdf) which contain the lessons, broken up into chapters.
14-
- [Labs](https://github.com/openmainframeproject/cobol-programming-course/tree/master/Labs) which contain the source code used in the chapters.
13+
- The COBOL Programming with VSCode PDF asset contains the course instructions.
14+
- The Source code asset contains everything that was in the project when the release was published.
15+
16+
To complete the course, you will also need to do one of the following:
17+
- Select a [provider](#providers) below and follow their registration process. Once complete, you should be given system details to use in the course.
18+
- Upload the source code for the course (located in the Labs folder) to your mainframe environment.
19+
20+
If you run into any issues, please don't hesitate to reach out on our [slack channel](https://openmainframeproject.slack.com/archives/C011NE32Z1T).
21+
22+
## Discussion
23+
24+
You can connect with the community in a variety of ways...
25+
26+
- [#cobol-programming-course channel on Open Mainframe Project Slack](https://slack.openmainframeproject.org)
27+
- ['COBOL technical questions' category on Open Mainframe Project Community Forums](https://community.openmainframeproject.org/c/cobol-technical-questions/16)
28+
- [COBOL Programming Course Discussion Mailing list](https://lists.openmainframeproject.org/g/cobol-course-discussion)
29+
30+
## Providers
31+
32+
These materials are being used by other organizations to provide COBOL training to the community. This project, nor Open Mainframe Project, doesn't review, maintain, or endorse any one of these particular providers. If you are using these materials in your training materials, feel free [to edit and issue a pull request](https://github.com/openmainframeproject/cobol-programming-course/edit/governance-docs/README.md) to have it included.
33+
34+
- IBM has provided a [free environment for completing the labs](http://ibm.biz/cobollabs).
35+
- IBM has provided a [free trial to IDz environment](https://developer.ibm.com/mainframe/products/ibm-z-open-development).
1536

1637
## Build
1738

@@ -29,21 +50,6 @@ Pull requests are welcome. For major changes, please open an issue first to disc
2950

3051
All contributions must align with the [Open Mainframe Project contribution guidelines](https://github.com/openmainframeproject/tac/blob/master/process/contribution_guidelines.md), including having a DCO signoff on all commits.
3152

32-
# Discussion
33-
34-
You can connect with the community in a variety of ways...
35-
36-
- [COBOL Programming Course Discussion Mailing list](https://lists.openmainframeproject.org/g/cobol-course-discussion)
37-
- [#cobol-programming-course channel on Open Mainframe Project Slack](https://slack.openmainframeproject.org)
38-
- ['COBOL technical questions' category on Open Mainframe Project Community Forums](https://community.openmainframeproject.org/c/cobol-technical-questions/16)
39-
40-
## Providers
41-
42-
These materials are being used by other organizations to provide COBOL training to the community. This project, nor Open Mainframe Project, doesn't review, maintain, or endorse any one of these particular providers. If you are using these materials in your training materials, feel free [to edit and issue a pull request](https://github.com/openmainframeproject/cobol-programming-course/edit/governance-docs/README.md) to have it included.
43-
44-
- IBM has provided a [free environment for completing the labs](http://ibm.biz/cobollabs).
45-
- IBM has provided a [free trial to IDz environment](https://developer.ibm.com/mainframe/products/ibm-z-open-development).
46-
4753
## Governance
4854

4955
This project is openly governed as defined in [GOVERNANCE.md](GOVERNANCE.md).

0 commit comments

Comments
 (0)