Hello World!

program Project1;
{$APPTYPE CONSOLE}
{$R *.res}
uses
    System.SysUtils;
begin
    try
    { TODO -oUser -cConsole Main : Insert code here }
        writeln(‘LAST BAJT doo, privredno društvo za informacione tehnologije i telekomunikacije’);
        writeln(‘Adresa : Đorđa Ognjanovića 7, 11030 Beograd, Srbija’);
        writeln(‘PIB : 103388756’);
        writeln(‘MB : 17413066’);
        writeln(‘Šifra delatnosti : 6201’);
        writeln(‘e-mail : office@lastbajt.com’);
        readln;
    except
        on E: Exception do
            Writeln(E.ClassName, ‘: ‘, E.Message);
    end;
end.