Discussion:
A4Q2
(too old to reply)
Pritesh Bodalia
2004-06-29 20:52:46 UTC
Permalink
In regards to procedure calls, is this valid:

foo();

or does it have to be preceded by the eval keyword, like below:

eval foo();

or are both valid?

This is in reference to the total.sl example in the SL Specs calling
main2(size);
Nguyen Nguyen
2004-06-29 21:59:46 UTC
Permalink
Both are valid. According to the SL specification, a procedure call can
be a statement.

Nguyen
Post by Pritesh Bodalia
foo();
eval foo();
or are both valid?
This is in reference to the total.sl example in the SL Specs calling
main2(size);
Loading...