#include <fstream>
#include <string>
 
bool touch(const std::string& file_path)
{
	return std::ofstream(file_path, std::ios_base::app);
}
 
int main()
{
	touch("foo.txt");
}
