Delphi Error E2010 Tipos incompatibles: 'cadena' y 'procedimiento, puntero sin tipo o parámetro sin tipo'

Usé TStringList y algo parecido a esto:

geo: TStringList;
response: TStringStream;
  begin
  http:=tidhttp.Create(nil);
  try
    { TODO -oUser -cConsole Main : Insert code here }
    geo:=TStringList.Create;
    response:=TStringStream.Create('');
    geo.Add('name=stas');
    geo.Add('pass=431');
    s:=http.Get('http://test.me');
    writeln(http.ResponseText);
    writeln(s);
    s:=http.Post('http://test.me',geo,response);

pero algo está mal. Por ejemplo, cuando lo ejecuto está alertando con el error[[DCC Error] consoleHttp.dpr(29): E2010 Incompatible types: 'string' and 'procedure, untyped pointer or untyped parameter'] ins:=http.Post('http://test.me',geo,response). ¿Qué hice mal

Respuestas a la pregunta(2)

Su respuesta a la pregunta