perform preliminary testing

This commit is contained in:
abbie 2022-01-29 11:17:56 +00:00
parent d9cbd089c6
commit 69986b6801
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87

View file

@ -95,6 +95,11 @@ fn load_macro(set: String, mac: String, inputs: String, vars: Vec<String>) -> St
} }
contents = xcont.to_string(); contents = xcont.to_string();
} }
if inputs.contains(")/") {
let coolbeans: Vec<&str> = inputs.split(")/").collect();
println!("{:?}", coolbeans[1]);
}
return contents.to_string(); return contents.to_string();
} }