📅  最后修改于: 2022-03-11 14:44:44.915000             🧑  作者: Mango
program HelloWorld;
uses crt; (* Clear screen command is available on crt library *)
begin
ClrScr; (*Clear anything before Hello, World!*)
writeln('Hello, World!');
end.