I Am Spoiled

Published January 18, 2008
Advertisement
qsort [] = []qsort (x : xs) = qsort less ++ [x] ++ qsort greater	       where	           less = [n | n <- xs, n <= x]		   greater = [m | m <- xs, m > x]


Haskell is neat.

On a semi-related note, I downloaded vim today for hacking around in Haskell (I've previously been using notepad [grin]). My first impression is that I miss Visual Studio.

I've always been a bit of a Microsoft-friendly developer. I've gone from MSVS 6.0 to 2003 to 2005, have always developed on Windows, and use Direct3D for my all my graphics needs (and Pix is the shit, as well). I don't know if I've just become spoiled from all this, but vim feels so...bare compared to a full-blown IDE like Visual Studio. It kind of scares me, really.
Previous Entry D'Oh
Next Entry Unsexy ISO Update
0 likes 1 comments

Comments

Ravuya
Haskell is bitchin'.

Wait until you develop a 16,000 line compiler, build it for the first time ever 15 minutes before deadline, and have it pass all of your tests out of the gate.
January 18, 2008 09:41 AM
You must log in to join the conversation.
Don't have a GameDev.net account? Sign up!
Advertisement

Latest Entries

/facepalm

1715 views

Baby Steps

1276 views

...

720 views

Stuff

1317 views

Productivity++

1204 views

Rock Band FTW

1236 views

Seattle Opera

1279 views

Christ

1205 views

I maek gaem!

1180 views
Advertisement