initial commit

This commit is contained in:
2026-02-16 19:15:59 +03:00
commit c14177e664
76 changed files with 24383 additions and 0 deletions

6
bin/main.cpp Executable file
View File

@@ -0,0 +1,6 @@
#include "run.hpp"
auto main(int argc, char* args[]) -> int
{
run();
}

7
bin/meson.build Executable file
View File

@@ -0,0 +1,7 @@
executable(
meson.project_name(),
'main.cpp',
dependencies : deps,
cpp_args: args
)