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