yum-mirror/slang
Making it easier to work with shaders
git clone https://git.yummers.dev/yum-mirror/slang
0389546b0
master
1//DIAGNOSTIC_TEST:SIMPLE: 2 3 4#define SOME + 5#define THING + 6 7#define A SOME 8#define B THING 9 10#define PASTE2(x, y) x##y 11#define PASTE(x, y) PASTE2(x, y) 12 13 14PASTE(A, B)