| 1 | = Namespace = |
| 2 | {{{ |
| 3 | namespace <namespaceId> |
| 4 | }}} |
| 5 | |
| 6 | Declare the namespace the (indented) following content belongs to. |
| 7 | |
| 8 | |
| 9 | <namespaceId> may be a single Toplevel Identifier ([A-Z][a-zA-Z0-9_]*) or a sequence of Identifiers separated by '.'.[[BR]] |
| 10 | |
| 11 | Each Identifier within the Namespace sequence must start with an uppercase letter. |
| 12 | |
| 13 | May contain |
| 14 | * [wiki:DocString DocString] |
| 15 | * [wiki:Class Class Definition] |
| 16 | * [wiki:Interface Interface Definition] |
| 17 | * [wiki:Struct Structure Definition] |
| 18 | * [wiki:Enum Enumeration] |
| 19 | * [wiki:Sig Signature ] |
| 20 | * [wiki:Extends Extension Definition ] |
| 21 | |
| 22 | == Example == |
| 23 | {{{ |
| 24 | namespace Test |
| 25 | ... |
| 26 | |
| 27 | namespace Foo.Bar.Baz |
| 28 | ... |
| 29 | }}} |
| 30 | |
| 31 | |