one does not simply eat sweets with wrappers on

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

View file

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