I am using a language called OX. It's an objected oriented matrix programming language. I am new to OOP. I have a few elementary questions. Since the language does not have a debug mode, I need to print out variables to debug. Please correct me if I am wrong in the following statement.
If I define a variable in the header file, say P1. And the class is MNP. Then in my main function, I could print the variable as print (MNP::P1) .
When an source is compiled as an object file, the print command in the object file will not be shown in the output window. So the only way to print is in the main function.
I am very new to the language. I am not sure if I have provided all information. Please correct me if I am not giving enough information.