1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-05-14 08:24:58 +00:00
serenity/Userland/Libraries/LibGLSL/Tests/parser/for-statement.glsl
2023-08-18 15:29:48 +02:00

7 lines
76 B
GLSL

void main()
{
int b = 0;
for (int a = 0; true; a++)
b++;
}