pfff helloworld...

This commit is contained in:
rorikstr 2025-05-06 15:41:52 +03:00
parent 13586edbe1
commit b50153dcfe

View file

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