SPL Module Reference: prime
load "prime";
Example Module for hosted namespaces
namespace
prime { }
namespace prime
This is an example hosted namespace. Numeric keys which are prime do point
to true values, other numerical keys point to false values and non-numerical
keys are undeclared. Example:
debug "declared prime['foo'] = " ~ declared prime['foo'];
debug "prime[5] = " ~ prime[5];
debug "prime[6] = " ~ prime[6];
This is just an example for writing modules which provide hosted namespaces.
It is not really meant to be used in any applications.