mirror of
https://github.com/notohh/rustlings.git
synced 2025-07-04 23:59:15 -04:00
string1 solution
This commit is contained in:
parent
2901d85662
commit
bd63ece47c
2 changed files with 15 additions and 8 deletions
solutions/09_strings
|
@ -1 +1,9 @@
|
|||
// Solutions will be available before the stable release. Thank you for testing the beta version 🥰
|
||||
fn current_favorite_color() -> String {
|
||||
// Equivalent to `String::from("blue")`
|
||||
"blue".to_string()
|
||||
}
|
||||
|
||||
fn main() {
|
||||
let answer = current_favorite_color();
|
||||
println!("My current favorite color is {answer}");
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue