Xip


Xip is an object oriented language with influences from C++ and Smalltalk.
Xip was developed by Abalon and is used for project ranging from real-time
OSes to marketing systems.

@Class World : XipObject
{
    @Public
        {
        sayHello();
        }
}

@Define World;

@Method World::sayHello()
{
     "Hello world"->print();
}

@Local w = :World->new();
w->sayHello();


submitted by: pontus@abalon.se (Pontus Rydin)