ris said:if the webpage's not 85% pink sf's not interested
function bondPeople(Person1, Person2 : person);
begin
with Person1 do
with Person2 do
while (Person1.hasPulse) and (Person2.hasPulse) do begin
if Person1.sizeOfAttribute < 8 then
doIt(Person1, Person2)
else begin
applyLubrication(Person2);
doIt(Person1, Person2);
end;
end;
end;
function DoStuff;
begin
while 1 = 1 do
bondPeople(Shadowfax, Psycho);
end;