mirror of
https://github.com/lucaspalomodevelop/cpp_stuff.git
synced 2026-03-13 06:49:37 +00:00
9 lines
122 B
C++
9 lines
122 B
C++
#include <stdio.h>
|
|
#include <filesystem>
|
|
|
|
int main()
|
|
{
|
|
std::filesystem::create_directory("sandbox");
|
|
return 0;
|
|
}
|