Object Pascal: Unterschied zwischen den Versionen
Zur Navigation springen
Zur Suche springen
Thomas (Diskussion | Beiträge) (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!