// Test simple module import
use std::test_simple
fn main() {
println!("Testing module system...")
let msg = test_simple.hello()
println!("Module says: {}", msg)
let result = test_simple.add(10, 20)
println!("10 + 20 = {}", result)
println!("✅ Module test complete!")
}