Performance Guidelines
Prefer straightforward loops, avoid repeated expensive calls, and use built-in parallel compile jobs.
Practical Checklist
- Cache values reused in tight loops.
- Batch file/network operations where possible.
- Use compiler defaults for parallel native builds.
Inspect Build Jobs
import system
display "Detected threads: " + system::threads()
display "Compile jobs: " + system::compileJobs()