remove print

This commit is contained in:
microproofs 2024-02-29 19:49:27 -05:00 committed by Kasey
parent c6ef37cc5c
commit 2aaa46e54c
1 changed files with 1 additions and 1 deletions

View File

@ -1197,7 +1197,7 @@ impl Program<Name> {
// We found it the builtin was curried before // We found it the builtin was curried before
// So now we merge the new args into the existing curried builtin // So now we merge the new args into the existing curried builtin
let curried_builtin = curried_terms.remove(index); let curried_builtin = curried_terms.swap_remove(index);
let curried_builtin = let curried_builtin =
curried_builtin.merge_node_by_path(builtin_args.clone()); curried_builtin.merge_node_by_path(builtin_args.clone());