In a .net visual cobol windows form, can a global variable be declared in working storage that references self::?
Working-storage section.
01 s as new self.
Method.
invoke s::GetNumbers().
I know you can use declare x = new self in the method itself, but can you declare a global variable that represents self?