New Paste :: Recent Pastes:: No Line Numbers
OpenGL code not working by Professor_010
1
#include "stdafx.h" #include "GL/glut.h" int main(int argc, char **argv) { glutInit(&argc, argv); glutInitWindowSize(300, 300); glutCreateWindow("Test"); glutMainLoop(); }