sync with local; working normal/complex conversions

This commit is contained in:
2023-02-08 15:48:20 +01:00
parent 82b85e15a0
commit 5a1eda07da
8 changed files with 271 additions and 0 deletions

11
src/output.rs Normal file
View File

@@ -0,0 +1,11 @@
use std::path::PathBuf;
pub fn print_terminal(ascii: Vec<String>) {
for line in ascii {
println!("{}", line);
}
}
pub fn print_file(ascii: Vec<String>, out: PathBuf) {
//todo: output
}