mirror of
https://github.com/rust-lang/rustlings.git
synced 2026-02-12 04:39:19 +00:00
15 lines
246 B
Rust
15 lines
246 B
Rust
// modules1.rs
|
|
//
|
|
// Execute `rustlings hint modules1` or use the `hint` watch subcommand for a
|
|
// hint.
|
|
|
|
mod sausage_factory {
|
|
pub fn make_sausage() {
|
|
println!("sausage!");
|
|
}
|
|
}
|
|
|
|
fn main() {
|
|
sausage_factory::make_sausage();
|
|
}
|