1

Is it possible to assign a value to a variable on its creation? Something like this:

var ProvisionHeaderCounter: Integer := 1;

1 Answers1

2

No, you can't. If you want to do this you will need to assign the value in the first line of your function.

René
  • 56
  • 3