I am making a module, has a number of methods. It was compiling fine until I used "Print" for the first time.
The code in question is:
Printout is a Global that is set outside of the custom type at start of the module, after the module info/definitions. I save this into my module folder and when I build modules it says "Identifier Print not found". I'm like, okay, Hello World was the first ever program I wrote with the print command, why is it not finding it? Is it not allowed in modules? I don't do any includes or imports or frameworks.
Why ????
The code in question is:
Method PrintSelf() 'Print to console details about this HLink If Printout=True Print "~nHLink object ------------------------------------"
Printout is a Global that is set outside of the custom type at start of the module, after the module info/definitions. I save this into my module folder and when I build modules it says "Identifier Print not found". I'm like, okay, Hello World was the first ever program I wrote with the print command, why is it not finding it? Is it not allowed in modules? I don't do any includes or imports or frameworks.
Why ????