i probably brained it
This commit is contained in:
parent
2d9b4ecaf3
commit
20dd51cee4
1 changed files with 2 additions and 3 deletions
|
@ -27,11 +27,10 @@ fn load_macro(set: String, mac: String, inputs: String, vars: Vec<String>) -> St
|
||||||
let mut keg: String = "".to_owned();
|
let mut keg: String = "".to_owned();
|
||||||
let mut coont = 0;
|
let mut coont = 0;
|
||||||
for input in based {
|
for input in based {
|
||||||
println!("{}", inputs);
|
|
||||||
let x;
|
let x;
|
||||||
if contents.contains(")!!") {
|
if inputs.contains(")!!") {
|
||||||
x = format!("{}![[hex]]", input);
|
x = format!("{}![[hex]]", input);
|
||||||
} else if contents.contains(")..") {
|
} else if inputs.contains(")..") {
|
||||||
x = format!("var!{}", input);
|
x = format!("var!{}", input);
|
||||||
} else {
|
} else {
|
||||||
x = input.to_string();
|
x = input.to_string();
|
||||||
|
|
Reference in a new issue