blob: 6104f64ea34ae88c7eb813d7badf83f0ec08b3aa [file] [log] [blame] [edit]
pub fn public_function() {
println!("called erty's `public_function()`");
}
fn private_function() {
println!("called erty's `private_function()`");
}
pub fn indirect_access() {
print!("called erty's `indirect_access()`, that\n> ");
private_function();
}