for-statement.glsl 76 B

1234567
  1. void main()
  2. {
  3. int b = 0;
  4. for (int a = 0; true; a++)
  5. b++;
  6. }