Introduction
ASH scripts can import other ASH scripts. As implemented, conceptually, the imported file is textually inserted at the import statement. This can cause name clashes: if multiple scripts define identically named types, variables, or functions, you end up with compile errors.
I've...