fpc/utils/pas2js/samples/hello.pas
2014-04-05 09:19:55 +00:00

14 lines
135 B
ObjectPascal

program hello;
Procedure DoHello;
begin
Writeln('Hello again');
end;
Var
A : Integer = 1;
begin
Writeln('Hello, world');
end.