Initial commit

This commit is contained in:
Pasha Bibko
2025-07-19 20:48:54 +01:00
commit ab564e9649
14 changed files with 258 additions and 0 deletions

16
LXC/LXC.cpp Normal file
View File

@@ -0,0 +1,16 @@
#include <LXC.h>
int main(int argc, char** argv)
{
using namespace LXC;
Util::ReturnVal fileContents = Util::ReadFile("example/example.lx");
if (fileContents.Suceeded())
std::cout << fileContents.Result() << std::endl;
else
std::cout << fileContents.Error().reason << " | " << fileContents.Error().path << std::endl;
return 0;
}