yum-mirror/slang

Making it easier to work with shaders

git clone https://git.yummers.dev/yum-mirror/slang

T. FoleyOverhaul the preprocessor (#1849)0389546b0

master
147 B12 linesraw
1//DIAGNOSTIC_TEST:SIMPLE:-E
2
3#define CONCAT(a, b) a ## b
4
5// Correct output AB;
6// Old Slang output
7// ab;
8
9#define A a
10#define B b
11
12CONCAT(A, B);