Hehe, alles gute zum Geburtstag!

Code:
program BDay;

begin
  if ParamStr(1) == '' then
  begin
    WriteLn('use as bday <name>');
    Exit;
  end;
  WriteLn('Happy BDay, ' + ParamStr(1) + '!');
end;