elena-lang
elena-lang copied to clipboard
Single line namespace declaration
Similar to C#, the single-line sub namespace must be supported. Something like this:
Additionally, to the standard way:
namespace collections
{
A;
}
the single-line namespace declaration will be like this:
namespace collections;
A;