6 lines
81 B
Rust
6 lines
81 B
Rust
use std::io;
|
|
|
|
fn main() -> io::Result<()> {
|
|
// Does nothing yet
|
|
Ok(())
|
|
}
|