There's a better way to code long script sections,
using the "python()" command. Here's an example:
@python('//')
x = 1
y = 2
//
The 'python' command accepts a string argument which is a terminator
line for the script section. The whole section is gathered, without
any processing, and then executed. There is a danger to be
aware of: if you don't put the terminator in correctly, the command
will read all the way to the end of the file.