14 lines
253 B
C++
14 lines
253 B
C++
#include "tests.h"
|
|
|
|
i32 main(){
|
|
if(setlocale(LC_CTYPE, "C.UTF-8")!=0)
|
|
kprintf("\e[93msetlocale failed\n");
|
|
kt_beginInit();
|
|
kt_initKerepTypes();
|
|
kt_endInit();
|
|
test_all();
|
|
kt_free();
|
|
kprintf("\e[0m\n");
|
|
return 0;
|
|
}
|