if-else.glsl 84 B

12345678
  1. bool foo()
  2. {
  3. if (1 == 2)
  4. return true;
  5. else
  6. return false;
  7. }