If you want to go faster when you copy a long variable to an other long variable (ex : a = b), you can replace this...
Code: Select all
a = b
Code: Select all
a ! a + b
PS: I've PB V4.10 B2. I don't know if it's the same for others versions.
Code: Select all
a = b
Code: Select all
a ! a + b