Language Initial

This commit is contained in:
IlyaShurupov 2024-02-03 12:18:10 +03:00 committed by Ilusha
parent 14cb588948
commit fae4d83f97
47 changed files with 831 additions and 14 deletions

14
Automatas/tests/Tests.cpp Normal file
View file

@ -0,0 +1,14 @@
#include "AutomatasCommon.hpp"
#include "Utils.hpp"
int main() {
tp::ModuleManifest* deps[] = { &tp::gModuleAutomatas, &tp::gModuleUtils, nullptr };
tp::ModuleManifest testModule("Test", nullptr, nullptr, deps);
if (!testModule.initialize()) {
return 1;
}
testModule.deinitialize();
}