is it possible to declare a string var and give it the result of a function as initial value like this or similar :
var
s : string = myfunction();
Thanks
|
is it possible to declare a string var and give it the result of a function as initial value like this or similar :
Thanks |
|||
|
|
|
No, but you could do that from the EDIT:
|
||||
|
|
|
No, Delphi language (or Object Pascal, whatever it is called at the moment) doesn't support that. |
|||
|
|
|
No, you have to declare an assign the variable separately:
|
|||
|
|