back at it again with the code bro

This commit is contained in:
abbie 2022-02-13 16:08:20 +00:00
parent f4c497e8a4
commit f8beef16a5
No known key found for this signature in database
GPG key ID: 04DDE463F9200F87

View file

@ -173,6 +173,11 @@ fn load_macro(set: String, mac: String, inputs: String, vars: Vec<String>) -> St
} }
contents = contelt.to_string(); contents = contelt.to_string();
} }
if inputs.contains(") begin") {
let coolbeans: Vec<&str> = inputs.split(") begin ").collect();
println!("{}", coolbeans.last());
}
return contents.to_string(); return contents.to_string();
} }