Skip to content

Commit 48fd714

Browse files
committed
BMi Calculator in Rust.
1 parent 5c8620e commit 48fd714

File tree

7 files changed

+366
-4
lines changed

7 files changed

+366
-4
lines changed

README.md

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,8 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
3838
* [18 Simple File Explorer](#18)
3939
* [19 Count Words](#19)
4040
* [20 Minesweeper](#20)
41-
* [21 Connect Four](#20)
41+
* [21 Connect Four](#21)
42+
* [22 BMI Calculator](#22)
4243

4344
## Bonuses
4445

@@ -47,8 +48,8 @@ If you have any questions, you can contact me by email morasiu2@gmail.com
4748
## Progress
4849

4950
All - **100** <br>
50-
Done - **21** <br>
51-
Remain - **79** <br>
51+
Done - **22** <br>
52+
Remain - **78** <br>
5253

5354
* <a name="00">00</a> Name Generator - 29.01.2018 *Done* (`Python 3`) <br>
5455
![00](docs/images/00.png)
@@ -106,6 +107,8 @@ Maybe some day?
106107
![20](docs/images/20.png)
107108
* <a name="21">21</a> Connect Four - 23.08.2018 *Done* (`Rust`)<br>
108109
![21](docs/images/21.png)
110+
* <a name="22">22</a> BMI Calculator - 28.08.2018 *Done* (`Rust`)<br>
111+
![22](docs/images/22.png)
109112

110113
## Bonus
111114

challenges/21_Connect_Four/src/connect_four.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ fn main() {
88
let term = Term::stdout();
99
println!("<------------Connect four------------->");
1010
println!("Created by Morasiu (morasiu2@gmail.com)");
11-
println!("Press any key to start"); //It's a lie :(
11+
println!("Press any key to start");
1212
term.read_key().ok();
1313
let mut player: i32 = 1;
1414
let mut cursor: i32 = 0;

challenges/22_BMI_Calculator/Cargo.lock

Lines changed: 304 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.
Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
[package]
2+
name = "bmi_calculator"
3+
version = "0.1.0"
4+
authors = ["Morasiu <morasiu2@gmail.com>"]
5+
6+
[dependencies]
7+
getch = "0.2.0"
8+
console = "0.6.1"
9+
10+
[[bin]]
11+
name = "bmi_calculator"
12+
path = "src/bmi_calculator.rs"

0 commit comments

Comments
 (0)