Files
cargoxx/scripts/curated-snippets/boost.cpp

9 lines
159 B
C++

#include <boost/filesystem.hpp>
import std;
int main() {
boost::filesystem::path p{"/tmp"};
std::println("boost ok: {}", p.string());
return 0;
}