Skip to content

Commit

Permalink
markdownlint対応
Browse files Browse the repository at this point in the history
  • Loading branch information
steelpipe75 committed May 26, 2024
1 parent 3409e04 commit 09eec84
Show file tree
Hide file tree
Showing 9 changed files with 41 additions and 27 deletions.
4 changes: 2 additions & 2 deletions go/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ Go で ボーリングのスコア計算

## ビルド方法

```
``` powershell
cd .\bowling_game\
go build
```

## テスト実行

```
``` powershell
cd .\bowling_game\
go test .\bowling_game\
```
4 changes: 2 additions & 2 deletions javascript_bun/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ JavaScript(bun) で ボーリングのスコア計算

## 実行方法

```
``` powershell
cd .\bowling_game\
bun run . ..\..\testdata\all_ones.txt
```

## テスト実行

```
``` powershell
cd .\bowling_game\
bun test
```
16 changes: 10 additions & 6 deletions lua/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,35 +5,39 @@ Lua で ボーリングのスコア計算
## 環境構築(hererocksを使用)

事前にhererocksをインストールしておく(要:Python)
```

``` powershell
pip install hererocks
```

hererocksでlua54フォルダにLua ver5.4とLuaRocks ver3.8をインストール
```

``` powershell
hererocks lua54 -l "5.4" -r "3.8"
```

lua54フォルダにインストールしたものをactivate
```

``` powershell
.\lua54\bin\activate.ps1
```

テスト用にLuaUnitをインストール
```

``` powershell
luarocks install luaunit
```

## 実行方法

```
``` powershell
cd .\bowling_game
lua .\main.lua ..\..\testdata\all_ones.txt
```

## テスト実行

```
``` powershell
cd .\bowling_game
lua .\test_bowling_game.lua
```
4 changes: 2 additions & 2 deletions nim/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,12 +4,12 @@ Nim で ボーリングのスコア計算

## ビルド方法

```
``` powershell
nimble build
```

## テスト実行

```
``` powershell
nimble test
```
7 changes: 3 additions & 4 deletions python/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,17 +6,16 @@ Python で ボーリングのスコア計算

## 実行方法

```
``` powershell
python .
```

```
``` powershell
python . ..\testdata\all_ones.txt
```

## テスト実行

```
``` powershell
python -m unittest discover .\tests\
```

4 changes: 2 additions & 2 deletions ruby/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,14 +4,14 @@ Ruby で ボーリングのスコア計算

## 実行方法

```
``` powershell
cd .\bowling_game\
ruby main.rb ..\..\testdata\all_ones.txt
```

## テスト実行

```
``` powershell
cd .\bowling_game\
ruby bowling_game_test.rb
```
8 changes: 4 additions & 4 deletions rust/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,26 +4,26 @@ Rust で ボーリングのスコア計算

## ビルド方法

```
``` powershell
cd .\bowling_game
cargo build
```

## ビルドして実行

```
``` powershell
cd .\bowling_game
cargo run
```

```
``` powershell
cd .\bowling_game
cargo run ..\..\testdata\all_ones.txt
```

## テスト実行

```
``` powershell
cd .\bowling_game
cargo test
```
15 changes: 12 additions & 3 deletions v/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,20 @@
V言語 で ボーリングのスコア計算

## 実行

``` powershell
cd .\bowling_game\
v run .\src\
```
v run .\src

``` powershell
cd .\bowling_game\
v run .\src\ ..\..\testdata\all_ones.txt
```

## テスト
```
v test .\src

``` powershell
cd .\bowling_game\
v test .\src\
```
6 changes: 4 additions & 2 deletions zig/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,11 +3,13 @@
Zig で ボーリングのスコア計算

## ビルド
```

``` powershell
zig build
```

## テスト
```

``` powershell
zig test .\src\lib\bowling_game_test.zig
```

0 comments on commit 09eec84

Please sign in to comment.