ich bin mir gerade nicht wirklich sicher, ob ich als blutiger Anfänger hier reinposten darf, aber ich trau mich mal. Ich belege ein Pascal-Modul im Rahmen meines Mathestudiums und versuche gerade das einfachste aller Programme zu schreiben, mit TextWrangler und Free Pascal, alles auf Mac OSX 10.10:
Code: Alles auswählen
#! /usr/local/bin/ppc386
program Anfang (output);
begin
write ('Hallo');
end.
Code: Alles auswählen
Free Pascal Compiler version 2.6.4 [2014/02/26] for i386
Copyright (c) 1993-2014 by Florian Klaempfl and others
Target OS: Darwin for i386
Compiling /Users/Robert/Desktop/untitled text.pp
untitled text-436030522.636.pp(1,1) Error: Illegal char constant
untitled text-436030522.636.pp(1,2) Fatal: Syntax error, "BEGIN" expected but "const string" found
Fatal: Compilation aborted
Danke!
Robert