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

12 lines
183 B
ObjectPascal

uses system;
var a:array[1..10] of byte;
//b:array[1..10] of integer;
//i:integer;
begin
//i:=100;
//b[1]:=10;
a[1]:=Convert.ToByte(10);
writeln(a[1]);
readln;
end.