PROGRAM MicoPas1;          {Programmname}

USES Crt;                  {Einbindung einer Unit}

PROCEDURE Initialisiere;   {Prozedur-Deklaration}
BEGIN                      {los geht's...}
 ClrScr;                   {CLeaR SCReen, l”sche Bildschirm}
END;                       {das war's!}

PROCEDURE Ausgabe;         {Prozedur-Deklaration}
BEGIN                      {los geht's}
 WriteLn('Hallo Welt!');   {Ausgabe}
 ReadLn;                   {Auf RETURN warten}
END;                       {das war's}

BEGIN                      {Hauptprogramm}
 Initialisiere;            {Prozedur-Aufruf}
 Ausgabe;                  {Prozedur-Aufruf}
END.                       {Alles vorbei!}

