This commit is contained in:
2024-04-11 21:46:46 -04:00
parent b9ef4c0d01
commit b0765fa8a6
2 changed files with 6 additions and 0 deletions

View File

@@ -68,6 +68,7 @@ std::string rebuild_args_to_sentence(std::vector<std::string> args)
if (i < args.size()-1) // Append space between each token except for last
sentence += " ";
}
return sentence;
}
#define FILE_NAME ".todo.txt"

View File

@@ -24,6 +24,11 @@
int main(int argc, char ** argv)
{
//char *testArgs[2];
//testArgs[0] = "Test";
//testArgs[1] = "Args";
//TodoApp app(2, testArgs);
TodoApp app(argc, argv);
app.Run();
return 0;