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