pascalabcnet/TestSamples/CompilationSamples/test_const_form_unit.pas
Бондарев Иван e6e67c193c initial commit
2015-05-14 21:35:07 +02:00

9 lines
135 B
ObjectPascal

uses GraphABC;
const
clRed=GraphABC.clRed;
clRedMy=GraphABC.clRed;
begin
PutPixel(100,10,clRedMy);
PutPixel(10,10,clRed);
end.