vault backup: 2025-05-14 14:27:01

This commit is contained in:
Dane Sabo 2025-05-14 14:27:01 -04:00
parent 2c0d173ce9
commit 1733bccf94
37 changed files with 8 additions and 0 deletions

View File

@ -4,6 +4,10 @@ fn main() {
another_function(); another_function();
another_other_function(7); another_other_function(7);
let num = five();
println!("{num}");
} }
fn another_function() { fn another_function() {
@ -13,3 +17,7 @@ fn another_function() {
fn another_other_function(x: i32) { fn another_other_function(x: i32) {
println!("The number I had was {x}."); println!("The number I had was {x}.");
} }
fn five() -> i32 {
5
}