= Namespace = {{{ namespace }}} Declare a namespace to be followed by declarations belonging to it. Indenting the content of the namespace is optional. may be a single Toplevel Identifier ([A-Z][a-zA-Z0-9_]*) or a sequence of Identifiers separated by '.'.[[BR]] Each Identifier within the Namespace sequence must start with an uppercase letter. A Namespace may contain * A [wiki:CodeDoc DocString] directly after the namespace declaration documenting the Namespace. (Currently not implemented) * [wiki:Classes Class Definition] * [wiki:Interface Interface Definition] * [wiki:Struct Structure Definition] * [wiki:Enum Enumeration] * [wiki:Delegates Signature ] * [wiki:TypeExtensions Extension Definition ] * [wiki:MixIn Mixin Definition] == Example == {{{ #!cobra namespace Test ... namespace Foo.Bar.Baz ... }}}