7 lines
69 B
Text
7 lines
69 B
Text
program TerminalBell;
|
|
|
|
{$APPTYPE CONSOLE}
|
|
|
|
begin
|
|
Writeln(#7);
|
|
end.
|