Object Pascal

Aus xinux.net
Zur Navigation springen Zur Suche springen

Compiler

  • apt-get install fpc

Sourcecode

  • cat helloworld.pp
begin
  write('Hallo Welt!');
end.

Compile

  • fpc helloworld.pp

Run

  • ./helloworld
Hallo Welt!