1
0

Initial commit

This commit is contained in:
2025-12-16 20:38:14 +00:00
commit 66ef613a6d
221 changed files with 8079 additions and 0 deletions

View File

@@ -0,0 +1,20 @@
// Don't change this function.
fn longest<'a>(x: &'a str, y: &'a str) -> &'a str {
if x.len() > y.len() {
x
} else {
y
}
}
fn main() {
// TODO: Fix the compiler error by moving one line.
let string1 = String::from("long string is long");
let string2 = String::from("xyz");
let result;
{
result = longest(&string1, &string2);
}
println!("The longest string is '{result}'");
}