// Test 1: Minimal Rust binary fn main() { println!("=== TEST 1: HELLO FROM RUNPOD ==="); println!("This is the simplest possible Rust binary"); println!("Sleeping for 10 seconds to keep pod alive..."); std::thread::sleep(std::time::Duration::from_secs(10)); println!("=== TEST 1 COMPLETE - EXITING CLEANLY ==="); }