Evidence That Eclipse Has Become a "Platform"
In a bit of link-chasing yesterday, I happened upon this page:
Installing the Nice compiler
Select your system:
(I'll have more to say about the Nice programming language later.)
Re: Evidence That Eclipse Has Become a "Platform"
It looks like its good old XSLT+CSS. Their website is in CVS. Take a look at the Makefile, and the stylesheets.
Re: Evidence That Eclipse Has Become a "Platform"
It's a very neatly (nicely, had Nice not been the name of the language) done language with a strong research flavor. Type inference, multiple dispatch, anonymous methods (lambda, closure), and type parameters (generics) are the things that jumped out of the user's manual at me.
The syntax feels natural but is different enough from Java to make me stop and think. It uses the gnu.bytecode package that's part of Kawa and Qexo.
Guess what the following method does?
int->int f(int x)
{
int g(int i) = i + x;
return g;
}







