mirror of
https://github.com/Relintai/sfw.git
synced 2024-11-08 07:52:09 +01:00
11 lines
149 B
C++
11 lines
149 B
C++
#include "core/ustring.h"
|
|
#include "core/error_macros.h"
|
|
|
|
int main(int argc, char **argv) {
|
|
|
|
ERR_PRINT(itos(23));
|
|
ERR_PRINT("TEST");
|
|
|
|
return 0;
|
|
}
|