8 lines
144 B
Rust
8 lines
144 B
Rust
|
use std::fs::File;
|
||
|
use std::io::{BufRead, BufReader};
|
||
|
|
||
|
fn main(){
|
||
|
let input = "input.txt";
|
||
|
let file = File::open(input).unwrap();
|
||
|
|
||
|
}
|