Let's say you have an array A and a variable B (both reals). Apparently
parameter (A = (/1.2, 3.4, .../) )
is illegal, so you have to do
data A /1.2, 3.4, .../
instead. However, what if you have a statement afterwards like this?
1 parameter (A = (/1.2, 3.4, .../) )
...
2...