Files
runner_test/main.cpp
maxbyte9p 57e4ebc8db
Some checks failed
Gitea Actions Demo / Explore-Gitea-Actions (push) Failing after 26s
j3ml autodoc test
2024-04-09 16:53:24 -04:00

18 lines
327 B
C++

#include <iostream>
#include <J3ML/Geometry.h>
#include <J3ML/J3ML.h>
int main(int argc, char** argv)
{
std::cout << "j3ml demo coming soon" << std::endl;
return 0;
}
#ifdef __WIN32
extern "C" {
int wmain(int argc, wchar_t* argv[])
{
return main(argc, reinterpret_cast<char **>(argv));
}
};
#endif