https://github.com/shader-slang/slang
Raw File
Tip revision: 09408e32d7c0ccebf38fe31b5d2ddf4b1cd128e4 authored by Yong He on 14 October 2022, 03:31:30 UTC
Allow multi-level breaks to break out of `switch` statements. (#2451)
Tip revision: 09408e3
lexer-comments.slang
//TEST:SIMPLE:
// confirming that the lexer handles comments correctly

// line comment

/* block comment
*/

/* block comments don't nest
   /*
*/

float f(float f) { return f; }
back to top