up vote 39 down vote favorite
37
share [g+] share [fb]

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?

link|improve this question
6  
I'm surprised: what languages have you found recently that don't have a foreach loop? – Ken Feb 13 '10 at 17:28
show 6 more comments
feedback

74 Answers

1 2 3
up vote 31 down vote accepted

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

link|improve this answer
show 1 more comment
feedback

Delphi

for the following features:

  • Class polymorphism. this means you can use virtual constructors and virtual class functions (as illustrated below). It's also possible to query whether a class supports an interface without having an actual object.
type
  TGraphicClass = class of TGraphic;
  TGraphic = class
    class function FindClass (FileExt: String): TGraphicClass;
    class procedure RegisterClass (AClass: TGraphicClass);

    class function SupportsFileFormat (FileExtension: String): Boolean; virtual; abstract;
    constructor CreateFromFile (FileName: String); virtual; abstract;
  end;

  TBitmap = class (TGraphic)
    class function SupportsFileFormat (FileExtension: String): Boolean; override;
    constructor CreateFromFile (FileName: String); override;
  end;

...

initialization
  TGraphic.RegisterClass (TBitmap);
  ...
  Result := TGraphic.FindClass (ExtractFileExt (FileName)).CreateFromFile (FileName);


  • The seamless COM integration, supported by the "implements" keyword, the "safecall" calling convention and the Variant type (of which you can write custom implementations, and even custom invokable variants for late binding!).

  • The clear separation of "interface" and "implementation". This is quite common in C++ as well (albeit not inforced), but it somehow got out of fashion in more recent mainstream languages such as Java and C#. If you want class declarations in C# or Java to be anywhere as concise as in Delphi, you'll need to mess with your IDE and with code folding - a feature which is, by design, totally unneccessary in Delphi.

  • Deterministic destruction.

  • The intrinsic enum and set types:

const
  CWhitespaceChars = [#9, ' '];
  CNumericChars = ['0'..'9'];
  CAlphaChars = ['A'..'Z', 'a'..'z'];
  CAlphaNumericChars = CAlphaChars + CNumericChars;
  CTokenChars = CAlphaNumericChars + ['_'];
  CNonWhitespaceChars = [#1..#255] - CWhitespaceChars;
  CNonPathChars = ['/', '\', ':', '*', '?', '"', '', '|'];

type
  TVegetable = (Aubergine, Zucchini, Tomato, Paprika, Onion);
  TRatatouille = set of TVegetable;
  TPeperonata = set of Tomato..Onion;
  • In Delphi Prism: Compile-time AOP! Doing AOP with no performance degradation, full support during coding (e.g. in IntelliSense) and without nasty bytecode juggling tricks, how cool is that?

  • Not Delphi-specific, but useful enough to be mentioned: Generics, anonymous methods aka closures and reflection.

  • Delphi is not case sensitive. This can be a huge plus.

  • Nested procedures and functions. You can emulate that with anonymous delegates, but it's a syntactical mess, it runs the risk of accidentally passing out a delegate, and it degrades performance notably.

link|improve this answer
3  
For the range checking! – gabr Feb 7 '10 at 10:40
10  
For Visual Forms Inheritance in the IDE! Works like a charm much before .NET and Java have it (AFAIK no Java IDEs have it) . – Fabricio Araujo Feb 7 '10 at 17:35
3  
Visual Form Inheritance, however, strikes me as not being a language feature :) – Moritz Beutel Feb 7 '10 at 23:18
1  
Your example of CAlphaChars is horribly broken in Unicode world (at least outside of English speaking countries). You'd better call it CAsciiAlphaChars. – Dejan Stanič Feb 7 '10 at 23:50
2  
case InSensitive: human typing for humans. – PA. Feb 16 '10 at 17:53
show 5 more comments
feedback

Python

slices: Whenever you have a collection of items, you carve yourself just the slice of that collection you need.

a = ('a', 'b', 'c', 'd', 'e')
print a[2:]     # prints ('c', 'd', 'e')
print a[:2]     # prints ('a', 'b')
print a[-2:]    # prints ('d', 'e')
print a[:-2]    # prints ('a', 'b', 'c')
print a[0:-1:2] # prints ('a', 'c', 'e')

map, reduce, filter functions: Just enormously concise ways to perform operations on collections of items:

t = time.localtime() # today's date/time tuple,
#   e.g. (2008, 8, 19, 10, 18, 12, 1, 232, 1)

Filling the collection with default values:

d = map(lambda a, b: a or b, (2000, 10), t[:3])
# d -> [2000, 10, 19]

Filtering a collection:

f = filter(lambda a: a > 10, t)
# f -> [2008, 19, 25, 43, 232]

with statement: Cleaner, more readable code with all the ugliness of the mostly technical detail of file exception handling and resource cleanup modularized into the file object itself.

with open('file.txt') as file:
    for line in file:
        print line

Perl

The Father of regular expressions - need I say more?

CPAN - an exhaustive collection of libraries for just about anything...

What I hate about it though, is the amount of horribly, horribly unmaintainable code, it makes so easy to write, and the lack of proper error handling.

Java

open source community. If you need a somewhat general purpose library or framework, chances are there is an open source version for it in Java.

link|improve this answer
6  
I like list comprehensions in python, that combine the functionality of map and filter: [fn(a) for a in my_list if some_condition(c)] – SpoonMeiser Nov 11 '08 at 0:00
4  
As far as I know, Perl is not the "father of regular expressions". Regular expressions existed for a long time (e.g. in grep, awk, sed...) before Perl came to be. – Svante Jan 7 '09 at 0:31
1  
@Svante and @Curt - your correction is noted, but my point was rather to the ecffect that if today someone thinks about regular expressions as a language integrated feature, Perl clearly excels at that. – Roland Tepp Jan 19 '10 at 8:46
2  
@Brad: if you're working on a team, "programs that work similarly look similarly" is a killer feature. – Jimmy Feb 8 '10 at 7:02
show 13 more comments
feedback

C#. Lots of killer features, many of them sub-features of LINQ (e.g., query comprehensions, iterators, extension methods, lambdas, generics, expression trees, type inferencing, and anonymous types). Some of them existed before LINQ while others were introduced to support it.

Strongly typed ruby-style suffixed foreach with indicies can be done with extension methods:

//items.ForEach((i,item)=>dowhatever(item));
static void ForEach<T>(this IEnumerable<T> items, Action<int,T> action)
 { int i = 0;
   foreach(var item in items) action(i++, item);
 }

//By-reference: items.ForEach((int i, ref Foo item)=>item = new Foo())
static void ForEach<T>(this T[] items, RefAction<T> action)
 { for(int i = 0;i < items.Count(); ++i) action(i, ref items[i]);
 }

delegate void RefAction<T>(int i, ref T item);

LINQ already has a version that returns a collection of mapped values:

 static IEnumerable<TResult> 
         Select<TSource, TResult>( this IEnumerable<TSource>        source
                                  ,     Func<TSource, int, TResult> selector)
link|improve this answer
show 1 more comment
feedback

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|improve this answer
show 1 more comment
feedback

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

Example 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|improve this answer
5  
This is really beautiful – Camilo Díaz Jan 11 '09 at 22:42
show 1 more comment
feedback

Right now, if I had to choose one language* to stick to for the rest of my life, I'd most likely go for Ruby.

Every time I use something like

5.times { |i| something_useful_that_uses i }

... I'm smitten again by the everything-really-is-an-object aspect. (Hmm, I'm a little concerned about how those underscores are going to render, looking at the preview below where I'm typing this)

And as for that PHP "foreach" thing, we have (for example)

for item in items

or

items.each do |item|                     # without index
items.each_with_index do |item, index|   # with

depending on your preference.

* I think the list of languages in which I've done some serious development is something like: COBOL, PL/1, C, C++, C#, MS Basic, VB/VBA, Pascal/Delphi, Python, Ruby. I've dabbled in others, but not enough to really have a proper appreciation. In the functional and LISP-derived language areas I am aware that I have, so far, missed something.

link|improve this answer
1  
You can also use for key,value in hash in Ruby. Doesn't work with arrays (don't know why). – Jules Dec 27 '08 at 21:24
show 4 more comments
feedback

Delphi

For its readability. I have often been thrown into 10,000 line applications to fix bugs and other problems. With Delphi I can almost read the code like a book. Makes it easy to find and fix the problems.

For its adaptability. Out of the box you can put together Desktop, Client/Server, N-Tier, Web servers, COM objects, etc., etc., etc. From anonymous methods and generics to inline assembly language. It hasn't failed me yet after 15 years of intensive use. And I can still compile and run applications that were implemented in Delphi 1 15 years ago!

For its sheer productivity! I personally believe that Delphi gives me almost a 2 to 1 advantage over other language platforms in developing almost any kind of application. That converts into dollars in my pocket pretty quickly. And for one company that I worked for, it was instrumental in moving them into the top tier of companies in their field in just a few years because of their ability to respond to changing market conditions.

Larry Drews TheSoftwareRonin

link|improve this answer
feedback

Delphi is my favorite for Windows RAD. Apps compile into a single file executable, no additional runtime files required.

link|improve this answer
feedback

Python

Closures

def adder(x):
    return lambda y: x+y
add5 = adder(5)
add5(1)
6

List Comprehensions

 numbers = [1,2,3,4,5]
 squared = [x **2 for x in numbers]

Functional Tools

squared  = map(lambda x: x**2, numbers)

Simple syntax that is easy to read and understand. Slicing.

link|improve this answer
show 3 more comments
feedback

OCaml, its killer feature might be pattern matching. It makes your program very readable :

let rec fact = fun
 | 0 -> 1
 | n -> n*fact (n-1)
;;


let rec filter predicate = fun
 | [] -> []
 | h::q  when predicate h -> h::(filter predicate q)
 | h::q->(filter predicate q)
;;

Ok sorry for that :

So the first function describe the blockbuster factorial function. It's implemented recursively.

So the first function should be read :

*(l.1)* **let** **fact** be a **fun**ction defined **rec**ursively as :

*(l.2)* when given **0** as an argument, returns **1**

*(l.3)* when given **n** as an argument, returns **n-1**
link|improve this answer
1  
F# could apply here too, since it can compile OCaml code without changes – Mauricio Scheffer Dec 27 '08 at 22:48
3  
I think haskell also has this – Roman A. Taycher Feb 6 '10 at 22:03
show 6 more comments
feedback

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

link|improve this answer
feedback
var favourite = languages.Where(lang => 
                   lang.Keywords.Contains("yield return")
                               ).FirstOrDefault();
link|improve this answer
3  
@Brett - but in the hands of a lunatic... smellegantcode.wordpress.com/2010/02/04/linq-to-stupid – Daniel Earwicker Feb 7 '10 at 20:00
show 6 more comments
feedback

I have recently begun playing with Haskell, and as Paul mentioned about OCaml, the pattern matching is really nice. Another thing I like about Haskell is the incredibly compact and beautiful list definitions, such as

[a | a<-[1..], a `mod` 3 == 0]

which creates an infinite list of all integers evenly divisible by three. The lazy evaluation (which allows the operations on infinite lists, and much more) takes a while to get used to though. I'm still quite confused about it.

link|improve this answer
feedback

Delphi for Web Apps, Desktop Apps, Service Apps, DLLs, .Net libs, Game Development, Mobile Development and hopefully soon Mac & Linux development (again), FTW!

link|improve this answer
feedback

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.

On a more serious note, see my answer about the extraordinary language Q.

link|improve this answer
feedback

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|improve this answer
show 1 more comment
feedback

F-Script, a SmallTalk-like language that has serious array programming features, and can be used to script Cocoa applications.

Say that you have a list of person objects that have properties like name and date of birth:

persons := {person1, person2, person3}.

We can get their names like this:

persons name.

which would return:

{'Phil', 'Anna', 'Sam'}

and then we could find out who was the oldest by doing this:

(persons at: (persons dateOfBirth ! persons dateOfBirth \ #max:)) name.

which might return

{'Phil'}

F-Script has an amazingly powerful feature set for working with arrays of objects. The killer feature is that any message sent to an array are passed to the objects in the array, and the return value is an array of the return values of that message (the exception is messages that the array implements, such as at:). So persons name above passes the message name to each element in the persons array and returns an array with all the names.

The second example shows the level of terseness. Basically what it does is that it finds the largest date of birth by reducing the array returned by persons dateOfBirth with max:, yielding the largest date. Then it checks each element in a identical array if that element is not equal (!) to that date, yielding an array of boolean values. at: can take an index, an array of indices or an array of booleans (where true would include the element at that index), so passing it the return from the last expression will return only the element whose dateOfBirth was the largest. Finally the message name is passed to the retults, returning an array with the name of the only object left.

I don't program in F-Script very much, but I find it a very nice language. For working with large sets of objects that need to be searched, sorted, filtered or joined in different ways I find it extremely terse and powerful. It's like combining SQL with SmallTalk.

link|improve this answer
show 2 more comments
feedback

Ruby

I grew up writing PHP and Perl, and Ruby really strikes me as a purer, cleaner version of Perl. Its best feature is how it makes functional programming second nature while still maintaining the "everything is an object" mentality.

link|improve this answer
2  
Maybe you should take a look at Perl6. – Brad Gilbert Oct 27 '08 at 22:04
feedback

Ada

It has full rich and portable concurrency support.

link|improve this answer
feedback

Delphi for .Net / Delphi Prism for unmanaged exports, which lets you consume managed assemblies from native code just like any .DLL without requiring .Net interop.

link|improve this answer
show 7 more comments
feedback

In C++ I like that I can still use pointers directly and still have the higher level functionality of classes.

In Python, I really, really like tuples. They are really handy.

In statically typed languages I keep finding myself wanting dynamic typing, but in dynamically typed languages I wish there were a way to statically type some things (particularly function parameters). It's a no win situation.

link|improve this answer
4  
It does on memory mapped IO devices. – Cristián Romo Dec 28 '08 at 22:27
1  
Javascript (ECMAscript) will (in the next version, IIRC) have the option of adding typing (or "verified" and "mapped" duck-typing rather) to functions, post facto. Fast prototyping ... and design-lockdown.. win-win! :) – Macke Feb 6 '10 at 22:51
show 3 more comments
feedback

Right now

PHP

  • Dynamic typing goodness
  • The PHP Manual
  • No framework dogma (lets you learn things by repeatedly shooting yourself in the foot)
  • C Style syntax (#1 requirement of the NBL :D)
link|improve this answer
3  
PHP is not my favourite language, but the one I use almost every day. I think PHP's killer feature is: super easy deployment. – FlorianH Feb 6 '10 at 22:09
feedback

Who is master: You or the language? You or the compiler? Why continue to bow down to the needs, whims and quirks of an awkward syntax, a finnicky compiler, a static language core? Enough of that. Write Ruby, be happy.

Ruby was built from the ground up with the primary goal of making programmers happy. Ruby makes programming enjoyable, a delight. Ruby gets out of your way, so you can go straight from idea to functional demo as quickly as possible. Ruby is your ally, not your enemy. You do not wrestle with Ruby, Ruby judo throws your problems to the mat and makes them slap it while crying for submission. Ruby was designed for maximum intuitivess; least surprise. Ruby boasts a marvellous consistency and arms you to the teeth with enough standard-library, introspective, metaprogramming, ZOMG-I-Can't-Believe-How-Many-Ruby-Projects-Have-Been-Written-Already ordnance to outshoot Clint Eastwood, Rambo, and Chuck Norris combined. With one hand. On a foreign language keyboard.

I dance with Ruby every day:

My programming language is my dance partner. She is supple, flexible, versatile, graceful, elegant, powerful, agile, and a delight to the eyes. With only the slightest expression on my part, she knows what I intend, and, without question or resistance, moves with me in perfect harmony. When we dance, I know neither frustration nor surprise; every moment brings only joy.

link|improve this answer
1  
Ruby also has a tendency to be cryptic, I haven't found a whole bunch of tutorials for standard Ruby (RoR is somewhat different) except 1 out of date book. So trying to learn Ruby is like learning any language without a guidebook. Ruby may be what you say, if I could just find a decent free book. – Robert K Oct 27 '08 at 13:44
10  
"She is supple, flexible, ... and a delight to the eyes" -- creepy^max! ;) – Juliet Feb 17 '09 at 19:58
show 2 more comments
feedback

Smalltalk: write code while your program is running, no compile cycle at all!

I really do not understand why no other language offers this!? Ruby and Python could both offer this feature, but alas no one has done that yet.

link|improve this answer
1  
Visual Basic did this for years. – Mike Hofer Dec 27 '08 at 21:52
show 5 more comments
feedback

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|improve this answer
show 1 more comment
feedback

C# Rules!!

  • LINQ
  • Generics
  • Lambas
  • Expression Trees
  • Anonymous types
link|improve this answer
feedback

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

Also, Java does have its own 'foreach'.

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

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

link|improve this answer
feedback

Good programmers write FORTRAN.

Really good programmers write FORTRAN in any language.

link|improve this answer
show 1 more comment
feedback

C

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

link|improve this answer
3  
Lingua franca of computer programming, granted, but computer science? Very few of the computer science papers I've read in my life have used C. Most of the classics I've read were Lisp, Algol, or occasionally Fortran, depending on the field. – Ken Feb 7 '10 at 0:33
show 1 more comment
feedback
1 2 3

Your Answer

 
or
required, but never shown

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