diff --git a/inp.txt b/inp.txt index 524acff..79437a6 100644 --- a/inp.txt +++ b/inp.txt @@ -1 +1 @@ -Test file +Test file diff --git a/src/main.rs b/src/main.rs index 8b76e58..dfdbc9d 100644 --- a/src/main.rs +++ b/src/main.rs @@ -1,5 +1,37 @@ use std::fs; use std::env; +use std::fmt; + +struct Program { + data: Vec, + pc: u32 +} + +impl Program { + fn from_string(program: String) -> Program { + let mut op_list: Vec = Vec::new(); + + for opcode in program.split(" ").collect::>() { + let mut new_op = opcode.to_owned(); + new_op = new_op.replace("\n", ""); + + if new_op.len() != 0 { + op_list.push(new_op.to_owned()); + } + } + return Program{ data: op_list, pc: 0 }; + } + + fn run(&self) { + println!("{}", self); + } +} + +impl fmt::Display for Program { + fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result { + write!(f, "Program ({:?})", self.data) + } +} fn main() { @@ -9,7 +41,8 @@ fn main() { } let filename = &args[1]; - + let contents = fs::read_to_string(filename).expect("Something went wrong reading the file"); - println!("{}", contents); + let prog = Program::from_string(contents); + prog.run(); }