Skip to content
This repository was archived by the owner on Feb 11, 2021. It is now read-only.

Commit c742b73

Browse files
committed
Rename filename
1 parent e06668b commit c742b73

File tree

4 files changed

+5
-5
lines changed

4 files changed

+5
-5
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# Command line application template for C/C++
22

3-
Implement CLI application by editing [src/app.cpp](src/app.cpp).
3+
Implement CLI application by editing [main.cpp](src/main.cpp).
44
You may add new files to keep your code clean, if it is allowed in your challenge.
55

66
## How to get input parameters

README_ja.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# コマンドラインアプリケーション(CLI アプリ)作成用テンプレート(C/C++)
22

3-
[app.cpp](src/app.cpp)を編集して、CLIアプリを実装してください。
3+
[main.cpp](src/main.cpp)を編集して、CLIアプリを実装してください。
44
チャレンジ内でファイルの作成が許可されていれば、可読性等のためにファイルを分割する事も可能です。
55

66
## コマンドライン引数の取得方法

cli-template.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
build:
2-
- c++ -o theapp.o "src/*.cpp"
2+
- c++ -o theapp.o src/*.cpp
33
files:
44
- .gitignore
5-
- src/app.cpp
6-
main: src/app.cpp
5+
- src/main.cpp
6+
main: src/main.cpp
77
command: ./theapp.o
File renamed without changes.

0 commit comments

Comments
 (0)