test_e6910ed6/
lib.rs

1//! # Hello World in Rust
2//! 
3//! This is a simple Rust program that prints "Hello, world!" to the console. 
4
5/// `hello` Module with a `world` function
6/// 
7/// # Example
8/// ```
9/// let _ = test_e6910ed6::hello::world();
10/// ```
11pub mod hello {
12  pub fn world() {
13    println!("Hello, world!");
14  }
15
16  pub fn world2() {
17    println!("Hello, world2!");
18  }
19}