Add ec_test

This commit is contained in:
2023-08-17 11:07:45 +03:00
parent 868537eb53
commit e49a3aec81
2 changed files with 374 additions and 1 deletions

View File

@@ -2,11 +2,14 @@
#include <string>
#include "lib.hpp"
#include "./ec_test.cpp"
auto main() -> int
{
auto const lib = library {};
auto const message = "Hello from " + lib.name + "!";
std::cout << message << '\n';
return 0;
return main_loop();
//return 0;
}