```rust use x86seriallogger::*;
pub fn main() { serialprint!("Hello, World!"); let x: usize = 10; serialprint!("X = {}", x); } ```