Mastodon Feed: Post

Mastodon Feed

jsonstein@masto.deoan.org ("Jeff Sonstein") wrote:

pub fn eat_at_restaurant() {
// an absolute path
// and I am not a fan of magic words
crate::front_of_house::hosting::add_to_waitlist();
// a relative path
// which works better for me
front_of_house::hosting::add_to_waitlist();
}

#LearningRust