Skip to content

Commit c96dc8b

Browse files
committed
READMEに使用方法を追記した.その他細かく修正した.
* READMEの各セクションのタイトルの文字サイズの縮小 * README_JP.mdの誤字の修正
1 parent 33c07e9 commit c96dc8b

File tree

2 files changed

+31
-7
lines changed

2 files changed

+31
-7
lines changed

README.md

Lines changed: 15 additions & 3 deletions
Original file line numberDiff line numberDiff 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

1313
See [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

1830
The 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

2133
Implemented.
2234

README_JP.md

Lines changed: 16 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,30 @@
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

55
opensource COBOL 4jはCOBOLソースコードをJavaソースコードに変換するCOBOLコンパイラです.
66
opensource 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

0 commit comments

Comments
 (0)