Pascal Cheat Sheet für Programmierer
while condition do begin statement(s) end;
while condition do statement;
DevLorenzo
while condition do begin statement(s) end;
while condition do statement;
repeat statement(s) until condition;
if condition then begin statement(s) end;
if condition then statement;
with variable do begin statement(s) end;
with variable do statement;