Ho sentito che cambiare il comportamento di una funzione in base al tipo di argomento è chiamato polimorfismo ad hoc: 
program Adhoc;
function Add(x, y : Integer) : Integer;
begin
    Add := x + y
end;
function Add(s, t : String) : String;
b...                            
                                                        
                                posta
                                 11.01.2018 - 15:21