summaryrefslogtreecommitdiff
path: root/xmake/templates/c++/tbox.console/project/src/main.cpp
blob: 2c7596b333f7812dde8467a497d073a8fa828502 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
/* //////////////////////////////////////////////////////////////////////////////////////
 * includes
 */
#include "tbox/tbox.h"

/* //////////////////////////////////////////////////////////////////////////////////////
 * main
 */
tb_int_t main(tb_int_t argc, tb_char_t **argv) {
    if (tb_init(tb_null, tb_null)) {
        tb_trace_i("hello tbox!");
        tb_exit();
    }
    return 0;
}