<< Joel on Software in Streaming Audio | Home | Bloglines.com Web Services >>

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.)

Tags :


Re: Evidence That Eclipse Has Become a "Platform"

Any idea what they used to create their site? I like the look and feel. I'm looking for something that I could use to better maintain: www.pcastl.org

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"

Im curious, have you had a chance to take Nice for a test drive. The one thing that I never seem to have time for is learning new languagues. If I can take 1 for a test drive every 6-12 months, I feel like Im doing good.

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;
}

Add a comment Send a TrackBack