Re: Comments between lines raise syntax error

Aurel Page <[email protected]> Sat, 1 Nov 2025 12:00:53 +0100
Newsgroups gmane.comp.mathematics.pari.user
Message-ID <[email protected]>
Dear Ewan,

All you are missing are the \ at the end of your comment lines:


level4=([\
e4,\
/* Level 1 multiplied by Level 3 */ \
z1*z5,\
z1*z6,\
z1*z7,\
/* Level 2 multiplied by itself */ \
z2*z2,\
z2*z3,\
z3*z3\
])

Cheers,
Aurel

On 01/11/2025 10:03, Ewan Delanoy wrote:
>
> level4=([\
> e4,\
> /* Level 1 multiplied by Level 3 */
> z1*z5,\
> z1*z6,\
> z1*z7,\
> /* Level 2 multiplied by itself */
> z2*z2,\
> z2*z3,\
> z3*z3\
> ])