2023-01-11 09:32:08 +00:00

7 lines
107 B
Rust

use std::io::Write;
fn main() {
print!("directly_linked.");
std::io::stdout().flush().unwrap();
}