Files
spider-runtime/src/spider/SpiderRuntime.cpp
2026-03-25 10:00:21 -06:00

19 lines
294 B
C++

#include "SpiderRuntime.hpp"
#include <spider/runtime/debug/LiveDebug.hpp>
#include <iostream>
namespace spider {
const u32 RUNTIME_VERSION_NO = 0x00000000; // v0.1
const std::string RUNTIME_VERSION = "alpha v0.1";
}
int main() {
spider::liveDebugMain();
return 0;
}