Solve rust/hello-world

This commit is contained in:
Avery Winters 2023-10-11 10:39:05 -05:00
parent 327faf9595
commit 6f62a90c6c
Signed by: avery
SSH key fingerprint: SHA256:eesvLB5MMqHLZrAMFt6kEhqJWnASMLcET6Sgmw0FqZI

View file

@ -1,4 +1,3 @@
// &'static is a "lifetime specifier", something you'll learn more about later
pub fn hello() -> &'static str {
"Goodbye, Mars!"
"Hello, World!"
}