9bdb0a12e4
Hints are now accessible using the CLI subcommand `rustlings hint <exercise name`. BREAKING CHANGE: This fundamentally changes the way people interact with exercises.
13 lines
219 B
Rust
13 lines
219 B
Rust
// modules1.rs
|
|
// Make me compile! Execute `rustlings hint modules1` for hints :)
|
|
|
|
mod sausage_factory {
|
|
fn make_sausage() {
|
|
println!("sausage!");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
sausage_factory::make_sausage();
|
|
}
|