fn a_private_module_fn()
Expand description

Another module function, demonstrating module-private function status.

Since this function is private to the module, it is inaccessible to external callers (see below in use_modules_internal()). However, it is accessible as normal to other functions within its own module, and thus can be called by a_public_module_fn().