You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
10 lines
368 B
10 lines
368 B
use crate::intcode::IntCode; |
|
use std::io::BufRead; |
|
|
|
pub fn part1<F: BufRead> (mut input: F) { |
|
let mut buf = String::new(); |
|
let _num_bytes = input.read_line(&mut buf).expect("Unable to first read line of input file"); |
|
let mut intcode = IntCode::from_str(&buf); |
|
println!("Input value `1` for part 1 and `5` for part 2:"); |
|
let _res = intcode.run(); |
|
}
|
|
|