Hello

// Hello Demo for Cosmos Programming Language.
module Hello;

import core.console;

void main()
{
        console.write("Hello Chaos");
}

That was easy, almost looks exactly like C/C++.

Why did you make just another C/C++ clone? Don't we have enough of those already!?

Printing a simple string of text to your console is exceptionally easy in C/C++ and really, just about all other practical languages. There's no reason to change things that work exceptionally well.