panther7
New member
Hi,
please add advanced choices for scripting. Functions are very simply, because overloading, default variables don’t work and so on.
E.g.
or
http://www.delphibasics.co.uk/RTL.asp?Name=Function
http://www.delphibasics.co.uk/RTL.asp?Name=Overload
please add advanced choices for scripting. Functions are very simply, because overloading, default variables don’t work and so on.
E.g.
Code:
test(x: string): string; overload;
begin
...
end;
test(x: int): string; overload;
begin
...
end;
Code:
test(x: int = 0): int;
begin
...
end;
http://www.delphibasics.co.uk/RTL.asp?Name=Overload
Last edited: