hemtt-preprocessor 1.0.0

A preprocessor library for hemtt
Documentation
1
2
3
4
5
6
7
#define QUOTE(x) #x

#define TEST 123


class test {
    value = #TEST;
    value = QUOTE(TEST);
};