Files
2023-03-13 08:36:51 +00:00

15 lines
192 B
ObjectPascal

program test;
procedure a;
begin
writeln('Funzione A');
end;
function b(a:byte, c:byte):byte;
begin
writeln('funzione B');
end;
begin
writeln('ciao mondo! - Pascal');
end.