Oo_.steady_state

Hi

Please advise me on this simple code.

In what follows below
s is declared as a parameter
x is not declared

After
steady;

s = oo_.steady_state(1);
gives an error equal to syntax error, unexpected STEADY_STATE

Whle the following works
x = oo_.steady_state(1);
s = x;

What operator do I put on oo_.steady_state(1) to make
s = oo_.steady_state(1);
work?

regards
Maurice

I am not sure what you are trying to do, but you need to put the command in

verbatim;
end;

Johannes
That worked perfectly. Thanks.
I wanted to put an expression using a number of steady states into a declared parameter s. A simple example is
s = oo_.steady_state(1);

But the preprocessor gave the error
syntax error, unexpected STEADY_STATE