yum-mirror/slang

Making it easier to work with shaders

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

Tim FoleyMerge pull request #3 from tfoleyNV/rename-testsce90fec1c

master
179 B13 linesraw
1//TEST:SIMPLE:
2// confirming that the lexer handles comments correctly
3
4// line comment
5
6/* block comment
7*/
8
9/* block comments don't nest
10   /*
11*/
12
13float f(float f) { return f; }