exercism, yo

This commit is contained in:
rorikstr 2025-05-06 14:59:17 +03:00
commit 13586edbe1
9 changed files with 296 additions and 0 deletions

View file

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