pascalabcnet/TestSuite/CompilationSamples/OpenGLABC.pas

18 lines
296 B
ObjectPascal
Raw Permalink Normal View History


///
///Модуль, зарезервированный для высокоуровневой оболочки модуля OpenGL
///
unit OpenGLABC;
2019-07-27 17:33:55 +03:00
interface
uses OpenGL;
implementation
begin
Writeln('OpenGLABC');
Writeln(new System.NotImplementedException);
Readln;
Halt;
end.