Submitted by rootnode on Wed, 08/17/2011 - 04:51
Gotta say, this one went pretty smooth. MOSA is now able to compile and handle delegates. Meaning that we're now able to use constructs like this:
delegate bool MethodType(int x);
public bool SomeMethod(int x)
{
System.Console.WriteLine(x);
return true;
}
public void Foo()
{
MethodType method = this.SomeMethod;
method(42);
}
Submitted by rootnode on Wed, 08/17/2011 - 04:41
After 3 years of development we were finally able to relase version 1.0 of the MOSA (Managed Operating System Alliance) project. Over the months we've been working and concentrating on two features:
- Support for generics
- Exception handling