finished circuit form

Signed-off-by: Ava Hahn <ava@aidanis.online>
This commit is contained in:
Ava Hahn 2023-03-03 14:29:53 -08:00
parent c235f9727f
commit 4b587f11ab
Signed by untrusted user who does not match committer: affine
GPG key ID: 3A4645B8CF806069
7 changed files with 144 additions and 53 deletions

View file

@ -59,11 +59,10 @@ pub fn configure(filename: String, syms: &mut SymTable) -> Result<(), String> {
},
);
let mut config_document = fs::read_to_string(filename)
.unwrap_or_else(|err: io::Error| {
eprintln!("{}", err);
"".to_string()
}) + ")";
let mut config_document = fs::read_to_string(filename).unwrap_or_else(|err: io::Error| {
eprintln!("{}", err);
"".to_string()
}) + ")";
config_document = "(".to_string() + &config_document;