breaking lines of code with " _ " in program not working
Posted: Thu Feb 20, 2020 8:22 am
Dear Eviews team,
I use EVIEWS 11 Sept 19 build, 64 bit.
Manually breaking long lines of code with the underscore character in a program does not seem to work as described in the documentation (c.f., quotation below): the example code below yields an error.
Best, mamo
http://www.eviews.com/help/helpintro.ht ... 23ww175823:
I use EVIEWS 11 Sept 19 build, 64 bit.
Manually breaking long lines of code with the underscore character in a program does not seem to work as described in the documentation (c.f., quotation below): the example code below yields an error.
Best, mamo
Code: Select all
wfcreate a 2000 2010
series x=nrnd
series y=3*x+4+nrnd
equation eq1.ls _
y x c
If you desire greater control over the appearance of your lines, you can manually break long lines using the ENTER key, and then use the underscore continuation character “_” as the last character on the line to join the multiple lines. For example, the three separate lines of text
equation eq1.ls _
y x c _
ar(1) ar(2)
are equivalent to the single line
equation eq1.ls y x c ar(1) ar(2)