A simple but amusing experiment in syntax.

I'm not sure yet if it's actually good for anything but it's kind of interesting and it works so I thought I'd share.

Cheers,
Kas.

===============================================-
class War extends Event
    {
    spork ~foo();
   
    fun void foo()
        {
        while(1)
            {
            this => now;
            <<<"hello">>>;
            }
        }
    }
   
War war;

second => now;
war.signal();
second => now;
=========================