myModule

The following example shows the namepaths that are used for symbols in a module. The first symbol is a module-private, or "inner," variable--it can be only accessed within the module. The second symbol is a static function that is exported by the module.

Members

inner foo

will be module:myModule~foo

Methods

inner bar()

will be module:myModule.bar