vote up 6 vote down star
18

Each language I've used has had its pros and cons, but some features have really shone through as being indispensible, shining examples of how to design a programming language to make programmers happy.

I use PHP a lot at work, and the one thing I really miss when moving to other languages is PHP's foreach:

foreach($items as $item) //iterate through items by value
foreach($items as &$item) //iterate through items by reference
foreach($items as $i => $item) //by value, with indices
foreach($items as $i => &$item) //by reference, with indices

In C#, I'm kind of smitten with the built-in multicast delegate system, as well as the way it handles getters and setters.

So what's your favourite/favorite language, and what feature makes it awesome?

flag
show 3 more comments

52 Answers

1 2 next
vote up 5 vote down check

I love LOLCode - it's killer feature is that it makes me laugh out loud. (;

link|flag
vote up 0 vote down

REALbasic is my favorite language. It's killer feature is that it is by far the easiest way to create a cross-platform desktop application. I love being able to develop on Mac OS X, but deploy to Windows when necessary.

I'm not aware of any killer feature in the language right now, but it did have extension methods years before C# 3.0 did!

link|flag
vote up 0 vote down

Scheme:

I really love the simplicity.. and perhaps, the fact that we can use special characters in variables name..

(define (smaller? x y) (< x y))

(if (smaller? 3 4) (do that))

In python (and other languages):

I really like to be able to use a list on-the-fly whenever I want without losing time and space doing vector ...; I just use li = [1 2 3].

In C# and Java:

I really love the fact that whenever you need something quickly, there's a library that's already been tested somewhere. I remember when I needed to quickly find a way to encrypt password.. it took me what.. 10min? Google, download, paste, install, test.

In Bash:

I really like the historic part.. there're so many hacks everywhere.. anytime I see a new hack, I learn a little bit more about the history of unix :) I also really like the fact that my console is in itself a programming language.. To be more precise on that, I like to be able to code even if I'm not creating a script.. sometime I just want to move files, or search a pattern, or unzip lots of file.. but still, I'll use a for loop. (Instead of selecting, and right+click unzip, etc.)

Finally, C/C++:

I know that performance is not really important for many apps.. however, when you need to really have control of what your code is doing, those languages are awesome. Everything was written with performance.. there's not a push_front method for vectors.. guess why? because it would make the insertion slower. (Even if we can still insert in the begining with an inserter.. :-)

link|flag
vote up 0 vote down

C#

killer feature: type safety.

link|flag
vote up 0 vote down

Perl.

Killer feature: Regular expression and a lot of library support at CPAN

link|flag
vote up 0 vote down

php

runs just about anywhere

in the wild!

link|flag
vote up 0 vote down

Perl for it's first class support of regular expressions, CPAN, and the fact that it doesn't force any specific programming style on you.

link|flag
vote up 0 vote down

No one has made a stand for VB so I will! (well, .Net framework at least)

  • Background compilation, I can add to a Class, and have my new functionality appear in Intellisence immediately, without compilation, or even saving the file!
  • ForEach loops, puh-lease!

    ForEach item As String In ListOfStrings
      'stuff'
    Next
    

People bag out VB.Net (or just MS in general). But in my line of work, we get judged on time-per-feature, so the less time working on pointer arithmetic the better I say!

link|flag
vote up 0 vote down

Mine used to be C#, mainly because on Visual Studio's awesome graphical editor for making king Windows forms apps. But now that I'm using it at my day job, there is a lot I really dislike. It has lots of new-fangled "wow" features, like generics, linq, attributes, etc... but they all seem to be riddled with caveots, inconsistancies, and just odd design decisions... plus so many of the good add-on libraries are for-pay, not as much open-source stuff out there.

Now I'm back to really liking Java again, due primarily to:

  • Language stability. I don't have to learn some new stuff every 2 months.
  • Consistant design decisions. Intuitive syntax.
  • Supports AOP tooling (technically C# sort of does now too, but it takes tools that much your code at compile time)
  • Community support? Actually a double edged sword. Lots of open source projects and good libraries, but are usually terribly supported and horrible excuse for documentation. Hibernate is an example. I've spend litterally days step debugging through Hibernate source code to find the source of anomalies that were apparently well known but not documented. Like there would be a flag you could set to do something, but it would have no documentation past a simple "turns on blah" comment.
link|flag
vote up 0 vote down

Common Lisp

Almost all new and shiny things in today's new languages are already there.

  • real macros that operate on the language (not the text) mean that you can eliminate all boilerplate
  • simple, consistent, and clear syntax through s-expressions
  • REPL
  • full support for functional programming and object orientation
link|flag
vote up 0 vote down

C++ is my primary language. Its killer feature is that it lets you touch the low-level details, while still managing to be a portable high-level language. If you know what you're doing, this lets you write well-designed, maintainable applications that are portably efficient with minimal human suffering. (note that the "if" requirement applies to all of the above...)

Haskell is my new favorite language. It has lots of really nice features, but the genuine killer feature is the type system. Haskell's type inference removes the need for most type declarations, while providing the full debugging and performance benefit of strong, static typing. And, its type class system makes C++ templates look sick and pale by comparison. (you still have to know what you're doing, though...)

Haskell's well-known laziness is an interesting feature IMHO, useful and annoying by turns. But it is nowhere near as impressive as its type system.

link|flag
vote up 1 vote down

C

Not only is it both flexible and elegant, it is the lingua franca of Computer Science.

link|flag
vote up 0 vote down

ActionScript and FLEX. With 95% penetration, it gives me the opportunity to create consistent client-agnostic applications that can provide extremely rich and highly interactive content in most web browsers - which I would never be able to do using any other mechanism...

link|flag
vote up 0 vote down

C#, for a number of reasons.

Type safety, full support for objects, extension methods, terseness, and a very rigorous compiler that doesn't let me get away with sloppy habits that I got used to as a Visual Basic programmer.

In my mind, however, C# is like Java, C, and Visual Basic merged together into a beautiful language with incredible power and flexibility. And, as an open standard, it shows promise as a cross-platform language (though that's not been fully realized yet).

link|flag
vote up 0 vote down

Groovy because of GroovyMarkup. It's awesome to be able to represent code and documents using the exact same syntax. Also, because it adds great syntax sugar to Java.

Io because of the simple, clean syntax and that it has no keywords.

link|flag
vote up 2 vote down

I'm happy with C and C++. The language that amazed at first impression was definitely Smalltalk. Coming from crude static languages such as C, or from the dark pits of x86 assembly, the dynamic and totally alive environment sensation that Smalltalk brings to the programmer is really outstanding.

C++ is a beast, is ugly, with non-orthogonal syntax, pitfalls everywhere, undefined behaviour here and there... but who can deny offers you (probably) a range of features and flexibility not available in most languages.

I like assembly very much, altough the x86 is a complicated beast to program compared to cleaner designs like MIPS.

link|flag
vote up 0 vote down

C++

  • For deterministic object destruction.
link|flag
vote up -1 vote down

Python has some killer directory/file traversal techniques which I loved when I was developing in it the other week.

link|flag
vote up 0 vote down

As I've recently started to rank all the major programming languages according to their pulling power, my favourite would have to be an obviously female-attracting language like Delphi: elegant and friendly, using proper words instead of resorting to pointless grunty man-squiggles, yet instinctively practical and not at all like frilly, ditzy, slow-to-react Ruby - the only language actually to be coloured pink.

At the other end of the spectrum, there are old favourites like Fortran, which is hopelessly male but in a pleasant pipe-smoking, GWR steam engine, leather elbow patches sort of way that reminds me of my Dad.

link|flag
vote up 2 vote down

C# Rules!!

  • LINQ
  • Generics
  • Lambas
  • Expression Trees
  • Anonymous types
link|flag
vote up 3 vote down

I love C++, The pointers and other stuff like the templates etc, are just so powerful. And i am surprised not many people have put in C++. I accept there are languages which make programming easy, but then when you really want to program i guess C++ stands out.

link|flag
vote up 0 vote down

Java

Its really cross platform when it comes to server-side.

I've developed applications in WinXP machine with 1 gb of ram and deployed on HP900 superdome with 16 gb or ram without chaning a single line of code.

Client side has been improved but still not cross platform.

link|flag
vote up 1 vote down

PowerBuilder!

The datawindow is an absolute killer for UI development.

Though no serious development happens on this platform for various reasons, it was one of the first languages I worked with and I still find that it has some features which are unavailable in other major UI devlopment RAD tools.

link|flag
vote up 0 vote down

I regulary come back to AWK. It's "killer feature" certainly is the "{...}" operator/environment/w.d.y.c.i.

link|flag
vote up 0 vote down

Java.

Killer features:

  1. JVM
  2. Static typing - enables easy refactoring, searching and navigation features in IDEs
  3. Libraries
  4. GWT and Android use Java syntax, while Jython, JRuby, Clojure, Scala and whatnot use JVM. I don't know how to call it, but it is awesome

What sucks:

  1. No lambdas
  2. J2EE

Edit: "Static typing" seems kinda weird as a killer feature. I guess I'm just opposing it to python, which is my 2nd favourite language

link|flag
show 1 more comment
vote up 0 vote down

C. For lack of "features". What you C is what you get.

link|flag
vote up 0 vote down

I use Delphi because it allows me write all types of applications. Web Development (ajax, Web Services the whole 9 yards), Desktop Development, Services, Dlls, .Net, Games, Graphics, you name it. And it comes with decades of well-established principles. And it's so easy to use. huge support base.

It's a language that's very easy to read so it's a breeze taking over legacy code and building on it.

Perhaps the biggest advantage, for me, is that it compiles to an exe or dll. No translation, so effectively runs twice as fast with 1/2 the resource footprint.

link|flag
vote up 18 vote down

Haskell. Its killer features:

It's lazy. This makes many difficult algorithms easy to reason about, and makes your programs more concise.

Example 1: To create a regular polygon with n sides, simply generate an infinite list of points by rotating 2pi/n around the origin, and take the first n items from it.

regularPolygon n sideLength
   = take n $ iterate (rotateVertex angle) (r, 0.0)
   where
      angle = (2 * pi) / n
      r = (sideLength / 2) * (1 / sin (angle / 2))
      rotateVertex angle (x,y) =
          (x * (cos angle) - y * (sin angle), x * (sin angle) + y * (cos angle))

Exmaple 2: Parallel evaluation. The par function evaluates the first argument in a separate thread and evaluates the second argument in the current thread. The pseq function evaluates the first argument and then the second. Here's a parallel Fibonacci sequence that takes advantage of lazy semantics.

fib 0 = 0
fib 1 = 1
fib n = r `par` (l `pseq` l+r)
    where
        l = fib (n-1)
        r = fib (n-2)

It's purely functional. This means that absolutely no undeclared side-effects are allowed. Functions can therefore be relied on to not have an effect on the rest of your program. Pure functions refer only to their arguments, and are therefore easy to understand.

square :: Integer -> Integer
square x = x * x

Effectful functions have a different type. Instead of returning an Integer, this function returns an IO action that gets an integer from the environment at a convenient time.

getInteger :: IO Integer
getInteger = do {
   x <- getLine
   return (read x);
}
link|flag
2  
This is really beautiful – Camilo Díaz Jan 11 '09 at 22:42
vote up 3 vote down

At the risk of getting downvoted :), I'll say "Perl 6". Yes, I know it's not in alpha yet, but it's getting closer all of the time. My favorite features? Too many to count, but here are a few:

  • Subtypes:

    subtype PosInt of Int where { $_ > 0 }
    
  • Roles:

    Known to many as traits, they solve many class composition problems.

  • Junctions (they're automatically parallelizable, too):

    if ( $role eq 'manager' | 'consultant' ) { ... }
    
  • A complete meta-object protocol

  • A mutable grammar allowing for much more powerful macros than what one sees in other languages.

There's plenty more and I fully expect an alpha out by next year.

link|flag
show 1 more comment
vote up 3 vote down

My favorite language is Java, mostly because of the great community support and support for multithreading and synchronization.

Also, Java does have it's own 'foreach'.

public void foo(String[] a) {
  for(String s : a) {
    //do stuff
  }
}

Weird syntax, I admit. But essentially does the same thing.

link|flag
1 2 next

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.