Concept
- Top-level names beginning with _ follow the private convention.
- Circular imports are rejected with dependency information.
Example
use math
use statistics
nums = [10, 20, 30]
say math.sqrt 25
say statistics.mean numsUse one module syntax for source, built-in, package and native modules.
use math
use statistics
nums = [10, 20, 30]
say math.sqrt 25
say statistics.mean nums