Files
SyncHome/trunk/workspace/Test_Pascal/primo.pas

15 lines
192 B
ObjectPascal
Raw Normal View History

2023-03-13 08:36:51 +00:00
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.