Skip to content

Commit 789ff7c

Browse files
improve function with other functions and comments
1 parent bff37ee commit 789ff7c

File tree

1 file changed

+17
-1
lines changed

1 file changed

+17
-1
lines changed

Rust/functions.rs

+17-1
Original file line numberDiff line numberDiff line change
@@ -1,17 +1,33 @@
1+
// Main function
12
fn main() {
23
println!("Hello, Satoshi!");
34

45
println!("-----Wallet-----");
56

67
another_function(99999);
78

8-
print_labeled_measurement(21000, 's')
9+
print_labeled_measurement(21000, 's');
10+
11+
let x = {
12+
let y = 6;
13+
y + 1
14+
};
15+
println!("Value of x is: {x}.");
16+
let x = five();
17+
println!("Value of x is now: {x}.")
918
}
1019

20+
// Simple function that print provided Bitcoin Price
1121
fn another_function(x: i32) {
1222
println!("The Bitcoin price is {x}");
1323
}
1424

25+
// Function that prints value and unit
1526
fn print_labeled_measurement(value: i32, unit_label: char) {
1627
println!("Bitcoin Balance : {value}{unit_label}");
1728
}
29+
30+
// Function that returns 5
31+
fn five() -> i32 {
32+
5
33+
}

0 commit comments

Comments
 (0)