I think I have worked it out.
Commentary within functions, procedures and include
files works if the printf statement is used. i.e. I modified the
code to:
procedure SayHi()
{
printf("Well Hello!"};
}
I hope this is the correct way to go about it.
regards
Chris
-------Original
Message-------
Date: 03/28/05
14:50:21
Subject: Re:
[amibroker] Interpretation in Procedures and Functions
I forgot to provide the result of this test:
Interpretation Function Test
End Of Test
and I expected the following:
Interpretation Function Test
Well Hello!
End Of Test
I hope the solution to this is easy.
regards
Chris
>>>>>>>>>>>>
Hi
I'm having a go at segregating my code modules into functions
and
procedures but have found that the interpretation does not display
if
embedded in a function or procedure.
Is this true or any suggestions?
Example Code shown below:
"Interpretation Function Test";
procedure SayHi()
{
"Well Hello!";
}
SayHi();
"End of Test";
I'm using V1.70.rc2
regards
Shawky
|