|
In a .f file there is code that does this:
real Bob, avar ... avar = Bob( 8.3 ) ...
Bob appears to be a function but it is declared at the beginning of the file as a real.
Then there is a .d file that has a reference to Bob. Also I know avar holds a value...
Started by Paul on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
But that's all that can be gleaned from the code you have posted is the number of points you have, ... .
It looks like Bob is a function, that is getting the real value 8.3 passed to it, and is returniung a real that is stored in avar.
|