Skip to content

Commit bff37ee

Browse files
add function file
1 parent 5ad4d0c commit bff37ee

File tree

1 file changed

+17
-0
lines changed

1 file changed

+17
-0
lines changed

Rust/functions.rs

+17
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,17 @@
1+
fn main() {
2+
println!("Hello, Satoshi!");
3+
4+
println!("-----Wallet-----");
5+
6+
another_function(99999);
7+
8+
print_labeled_measurement(21000, 's')
9+
}
10+
11+
fn another_function(x: i32) {
12+
println!("The Bitcoin price is {x}");
13+
}
14+
15+
fn print_labeled_measurement(value: i32, unit_label: char) {
16+
println!("Bitcoin Balance : {value}{unit_label}");
17+
}

0 commit comments

Comments
 (0)