master
Daniel Kolesa 2016-09-20 22:12:19 +02:00
parent e20db8e7d5
commit 14f534cccd
1 changed files with 2 additions and 2 deletions

View File

@ -648,8 +648,8 @@ int main(int argc, char **argv) {
os.register_rulecmds();
os.new_command("echo", "C", [](CsState &cs, CsValueRange args, CsValue &) {
cs.get_out().writeln(args[0].get_strr());
os.new_command("echo", "C", [](CsState &, CsValueRange args, CsValue &) {
writeln(args[0].get_strr());
});
os.new_command("shell", "C", [&os, &tpool](