'Generic Commit'
Some checks failed
dropshell-build / build (push) Failing after 1m5s

This commit is contained in:
Your Name
2025-06-03 01:10:16 +12:00
parent a882153e56
commit f26383b66d
4 changed files with 47 additions and 10 deletions

View File

@@ -6,6 +6,10 @@
#include "httplib.hpp"
#include "version.hpp"
void crashy() {
ASSERT(false,"SUCCESS!");
}
int main() {
std::cout << "ipdemo version: " << ipdemo::VERSION << std::endl;
std::cout << std::endl;
@@ -23,6 +27,8 @@ int main() {
std::cout << j.dump(4) << std::endl;
std::cout << "Done" << std::endl;
crashy();
return 0;
}