Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
program test;
uses crt;
var ch,ch2 : char;
begin
repeat
ch:=readkey;
write(byte(ch):4);
if ch=#0
then writeln(byte(readkey):5)
else writeln;
until ch=#27;
end.