Re: Comments between lines raise syntax error

Bill Allombert <[email protected]> Tue, 4 Nov 2025 16:37:29 +0100
Newsgroups gmane.comp.mathematics.pari.user
Message-ID <aQodueiEbgJUQ4rm@seventeen>
On Sat, Nov 01, 2025 at 02:29:44PM +0100, Ruud H.G. van Tol wrote:
> As an alternative style, also consider:
> 
>   { my
>     ( 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
>       ]
>     );
>   }

This does not quite work, since now level4 is only defined inside the braces!

Cheers,
Bill.