kcpmtk/test.pas

13 lines
154 B
Plaintext
Raw Normal View History

2023-10-03 08:54:45 +00:00
program test;
{$I 'binary.inc'}
var
bstr : String[2] = '41';
bval : Byte;
begin
bval := ReadByte(bstr);
Writeln('hello', Char(bval));
end.