File tree Expand file tree Collapse file tree 2 files changed +31
-7
lines changed
Expand file tree Collapse file tree 2 files changed +31
-7
lines changed Original file line number Diff line number Diff line change @@ -8,15 +8,27 @@ This compiler is deeply inspired by ["opensource COBOL"](https://github.com/open
88
99** NOTE** : This package is the Developers Edition.
1010
11- # Requirements and Installation
11+ ## Requirements and Installation
1212
1313See [ Installation page] ( https://github.com/opensourcecobol/opensourcecobol4j/wiki/Installation ) .
1414
15+ ## Usage
1516
16- # The progress of the development
17+ Compile.
18+ ``` bash
19+ cobc -m [COBOL source file]
20+ ```
21+ ("cobc" command produces [ PROGRAM-ID] .java and [ PROGRAM-ID] .class in the current directory.)
22+
23+ Run.
24+ ``` bash
25+ java [PROGRAM-ID]
26+ ```
27+
28+ ## The progress of the development
1729
1830The functions in the following "implemented" list are tested using [ NIST COBOL85 test suite] ( https://www.itl.nist.gov/div897/ctg/cobol_form.htm )
19- and ** 95%** of the test cases are passed.
31+ gnd ** 95%** of the test cases are passed.
2032
2133Implemented.
2234
Original file line number Diff line number Diff line change 11# opensource COBOL 4j
22
3- [ English version README] ( https://github.com/opensourcecobol/opensourcecobol4j/blob/develop/README.md )
3+ gEnglish version README] ( https://github.com/opensourcecobol/opensourcecobol4j/blob/develop/README.md )
44
55opensource COBOL 4jはCOBOLソースコードをJavaソースコードに変換するCOBOLコンパイラです.
66opensource COBOL 4jはCOBOLからCに変換するCOBOLコンパイラ[ "opensource COBOL"] ( https://github.com/opensourcecobol/opensource-cobol ) をもとに開発されています.
77
88** 注意** : 現在は開発者バージョンです
99
10- # インストール
10+ ## インストール
1111
12- See [ インストールページ] ( https://github.com/opensourcecobol/opensourcecobol4j/wiki/Installation_JP ) をご覧ください.
12+ [ インストールページ] ( https://github.com/opensourcecobol/opensourcecobol4j/wiki/Installation_JP ) をご覧ください.
1313
14+ ## 使い方
1415
15- # The progress of the development
16+ コンパイル.
17+ ``` bash
18+ cobc -m [COBOL source file]
19+ ```
20+ (cobcコマンドにより,カレントディレクトリに[ PROGRAM-ID] .javaと[ PROGRAM-ID] .classが生成されます.)
21+
22+ 実行.
23+ ``` bash
24+ java [PROGRAM-ID]
25+ ```
26+
27+ ## The progress of the development
1628
1729下記の実装済みリストにある機能は[ NIST COBOL85 test suite] ( https://www.itl.nist.gov/div897/ctg/cobol_form.htm ) でテストされており,** 95%** のテストケースをパスしています.
1830
You can’t perform that action at this time.
0 commit comments