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.