Commit 23c55bda authored by Paul's avatar Paul
Browse files

Skip builtins and loads

parent f1d1b612
...@@ -448,7 +448,7 @@ argument program::eval(std::unordered_map<std::string, argument> params) const ...@@ -448,7 +448,7 @@ argument program::eval(std::unordered_map<std::string, argument> params) const
this->debug_print(ins); this->debug_print(ins);
auto result = check_context(f); auto result = check_context(f);
ctx.finish(); ctx.finish();
if(trace_level > 1) if(trace_level > 1 and ins->name().front() != '@' and ins->name() != "load")
std::cout << "Ouput: " << result << std::endl; std::cout << "Ouput: " << result << std::endl;
return result; return result;
}); });
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment