shenanigans

Implementing lazy-loaded modules in VBScript

A while back, I needed a solution to sanely import libraries in VBScript. VBScript, for reference, has no build-in import capabilities. The traditional method of importing files is to use SSI, which dumps the contents of the includee verbatim into the includer. This is less-than-optimal for a number of reasons: there is no way to avoid ...