Object Pascal: Unterschied zwischen den Versionen

Aus Xinux Wiki
Zur Navigation springen Zur Suche springen
(Die Seite wurde neu angelegt: „=Compiler= *apt-get install fpc =Sourcecode= *cat helloworld.pp begin write('Hallo Welt!'); end. =Compile= *fpc helloworld.pp =Run= *./helloworld Hallo…“)
 
(kein Unterschied)

Aktuelle Version vom 2. November 2017, 10:27 Uhr

Compiler

  • apt-get install fpc

Sourcecode

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

Compile

  • fpc helloworld.pp

Run

  • ./helloworld
Hallo Welt!