mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-24 15:02:19 +00:00
7 lines
107 B
Rust
7 lines
107 B
Rust
use std::io::Write;
|
|
|
|
fn main() {
|
|
print!("directly_linked.");
|
|
std::io::stdout().flush().unwrap();
|
|
}
|