cleaning code

This commit is contained in:
ada
2020-11-24 02:50:45 +01:00
parent 8ad74de6a6
commit 427bfcfe15
2 changed files with 1 additions and 5 deletions

View File

@@ -45,10 +45,6 @@ fnv = "1.0.6"
name = "basic"
path = "src/old/basic_minimal.rs"
[[bin]]
name = "bits"
path = "src/old/bits.rs"
[[bin]]
name = "mimc"
path = "src/bin/mimc.rs"

View File

@@ -272,7 +272,7 @@ fn eval(mut ast: MalVal, mut env: Env) -> MalRet {
}
}
Sym(ref a0sym) if a0sym == "setup" => {
let (a1, a2) = (l[1].clone(), l[2].clone());
let (a1, _a2) = (l[1].clone(), l[2].clone());
eval(a1.clone(), env.clone())
}
//Sym(ref a0sym) if a0sym == "prove" => {