|
This section is all about making Lingo run faster and use less memory.
General Techniques
This article runs through some general tips for writing faster, smaller code. Unfortunately, these are often mutually exclusive, but not always.
General Techniques >
Speed Test
Timing is essential to optimise your code. If you don't know how long a piece of code takes to run, you cannot tell when you have made it faster.
Speed Testing Scripts >
String concatenation
This article explains why you should avoid the string concatenation operator (&) if at all possible.
String Concatenation >
|