Untitled
4 years ago in C
#include <filesystem>
#include <iostream>
int main() {
std::filesystem::path p = "README.md";
std::cout << "p = " << p << '\n';
}