fork download
  1. #include <string>
  2. #include <iostream>
  3.  
  4. const std::string vertSource = "\
  5. #version 430 core\
  6. deliberate_syntax_error\
  7. in vec3 inPosition;\
  8. in vec3 inColor;\
  9. out vec3 passColor;\
  10. ";
  11.  
  12. int main() {
  13.  
  14. std::cout << vertSource;
  15. // your code goes here
  16. return 0;
  17. }
Success #stdin #stdout 0s 3272KB
stdin
Standard input is empty
stdout
    #version 430 core    deliberate_syntax_error    in vec3 inPosition;    in vec3 inColor;    out vec3 passColor;