We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent bff37ee commit 789ff7cCopy full SHA for 789ff7c
Rust/functions.rs
@@ -1,17 +1,33 @@
1
+// Main function
2
fn main() {
3
println!("Hello, Satoshi!");
4
5
println!("-----Wallet-----");
6
7
another_function(99999);
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}.")
18
}
19
20
+// Simple function that print provided Bitcoin Price
21
fn another_function(x: i32) {
22
println!("The Bitcoin price is {x}");
23
24
25
+// Function that prints value and unit
26
fn print_labeled_measurement(value: i32, unit_label: char) {
27
println!("Bitcoin Balance : {value}{unit_label}");
28
29
30
+// Function that returns 5
31
+fn five() -> i32 {
32
+ 5
33
+}
0 commit comments