9 lines
159 B
C++
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;
|
|
}
|