Page 1 of 1

[Implemented] Initial values for Static variables.

Posted: Mon Feb 28, 2005 3:03 pm
by matthew180
It would be nice to be able to assign initial values to Static variables, something like this:

Code: Select all

Procedure x()
  Static a.l = 1000
  Static b.l = -1
  Static c.s = "Hello World"

...

EndProcedure
Matthew