fix const

This commit is contained in:
chatlanin
2022-04-07 17:11:02 +03:00
parent ed20a19521
commit fe02073b12
6 changed files with 13 additions and 10 deletions

View File

@@ -181,5 +181,8 @@ int main(int argc, char *argv[])
{// ex: utils::exec
hack::log()(hack::utils::exec("ls"));
hack::log()(hack::utils::exec("pwd"));
auto t = hack::utils::exec("pwd");
hack::log::type_trace(t);
}
}