1 2 3 4 5 6
use std::error::Error; pub fn test_kattis() -> Result<(), Box<Error>> { println!("YOU ARE TESTING ME"); Ok(()) }