sfw/sfwl/main.cpp

11 lines
149 B
C++
Raw Normal View History

2024-01-20 10:54:39 +01:00
#include "core/ustring.h"
#include "core/error_macros.h"
int main(int argc, char **argv) {
ERR_PRINT(itos(23));
ERR_PRINT("TEST");
return 0;
}