Exercism Rust Lang – 1


// The &'static here means the return type has a static lifetime.
// This is a Rust feature that you don't need to worry about now..
pub fn hello() -> &'static str {
"Hello, World!"
}

view raw

helloworld.rs

hosted with ❤ by GitHub

Leave a Reply

Fill in your details below or click an icon to log in:

WordPress.com Logo

You are commenting using your WordPress.com account. Log Out /  Change )

Facebook photo

You are commenting using your Facebook account. Log Out /  Change )

Connecting to %s