Initial commit

This commit is contained in:
Alexander Kobjolke 2025-03-13 22:36:51 +01:00
commit 4f4397b3e1
48 changed files with 2002 additions and 0 deletions

7
VectorFiller/main.cpp Normal file
View file

@ -0,0 +1,7 @@
#include "atlas/bootstrap/bootstrap.h"
auto main(int argc, char* argv[]) -> int
{
atlas::bootstrap::Bootstrap bootstrap;
return bootstrap.run(argc, argv);
}