Rust-Programming-Cookbook/Chapter04/sample_module/nested_mod.rs

16 wiersze
379 B
Rust
Czysty Zwykły widok Historia

2017-07-31 06:59:18 +00:00
//-- #########################
//-- Task: Nested module
//-- Author: Vigneshwer.D
//-- Version: 1.0.0
//-- Date: 4 March 17
//-- #########################
// sample_mod/nested.rs
pub fn sample_function() {
println!("called `sample_module::nested::sample_function()`");
}
#[allow(dead_code)]
fn private_function() {
println!("called `my::nested::private_function()`");
}