I want to make up a program language and write some code for it. Maybe I can use ANTLR for syntax checking. What I want to know is what features of a programming language you like? I'll start with a few:

Edit:

link|improve this question
feedback

41 Answers

1 2

Lambda functions. More generally, making executable code a full-fledged object in the language as per Lisp.

link|improve this answer
show 1 more comment
feedback

Reflection.

link|improve this answer
1  
@[Javier]: if you look under the hood you'll likely find that your favorite dynamic languages rely on reflection to work at all! – Steven A. Lowe Jan 13 '09 at 19:42
show 5 more comments
feedback
  • Deterministic destructors (as in C++)
  • Static type system with type inference (Haskell, ML, Boo...)
  • Built-in high level concurency support (Erlang)
  • Modules (Ada, Modula-2)
  • Ability to expose "C" interface to other programming languages (C++, Objective-C)
  • Type-safe containers (C++)
link|improve this answer
1  
@Bevan: How can you not like deterministic destructors? – Jon Harrop Apr 10 '11 at 15:45
show 2 more comments
feedback

I'm a big fan of variables. They're just the cat's meow for me.

link|improve this answer
show 2 more comments
feedback

LINQ! Probably one of the most useful features I've seen implemented.

link|improve this answer
show 3 more comments
feedback
  • The ability to extend the language using built in structures.

  • Keep the core minimal and let the users evolve the language by adding various libraries on top.

For example, Smalltalk does not need the standard if/then/else construct in the language. IfTrue: is just a standard message the boolean object accepts.

Ruby carries Smalltalk's tradition but is less extreme in this case (e.g., you do have a built in if() construct but each() is a simple message replacing the traditional for loop).

Another example is the nice design of Scala.

link|improve this answer
show 3 more comments
feedback

Without a shred of doubt, Garbage Collection. Every time I have to code something in C++/C, I realize again how big a life saver it is.

Without it, I just waste so much time one the meaningless tasks of:

  1. Allocating memory
  2. Remembering to deallocate memory
  3. Thinking about the concepts surrounding memory in my modules (ok, so this module allocates the memory, this other module releases it, etc).
  4. Thinking about how memory allocation works in outside modules (i.e., understanding that to call a Win32 API function, I need to call once with the flags set to telling me how much memory I need to allocate for strings, another time with flags saying I want the string).
  5. And of course, debugging all the endless mistakes that I'm sure to make.

Every other high-level feature I like would just not be possible without Garbage Collection freeing the burden of memory-management.

link|improve this answer
show 1 more comment
feedback
  • Robust Macros (see: Common Lisp)
  • Perl/Ruby's regular expressions sugar
  • Continuations (though I'm still learning about them)
  • The ability to compile to native code with any/all required libraries included (I have a heck of a time distributing Perl or Lisp code to random people.)
link|improve this answer
show 1 more comment
feedback

Very long compile times, so I can drink more coffee.

Ideally, the compiler should have to use a web service to verify something in each module.

So should the debugger, there's nothing better than staring at the debugger for 10 minutes while it says 'downloading blahblah.c from http://whatever.yadda.yadda.com'.

And limit namespaces to 4 characters so there's not so much typing. 2 characters would be better.

Oh wait, you said features I like. Nevermind.

link|improve this answer
show 1 more comment
feedback

Give my carry/overflow flags back you damn HLLs... Oh wait, it is a machine feature not a language feature. Whatever, I still want them back...

link|improve this answer
1  
I second this. Also, I want my high bits from doing a Nbit*Nbit -> 2Nbit multiplication. – comingstorm Jan 13 '09 at 21:19
show 3 more comments
feedback
  • S-expressions: completely uniform, unambiguous syntax.
  • Generic functions: which function gets called is not dependent on only the type of one of the call's arguments, but on all the involved types.
  • Support for functional idioms: functions as first-class objects, tail call optimization
  • I like dynamic typing, with the option to declare types at specific places for efficiency.
link|improve this answer
show 4 more comments
feedback
  • C# auto-properties (public int Foo { get; set; })
  • async { } in F#, that automatically makes closures for asynchronous code
link|improve this answer
show 1 more comment
feedback

I like properties. They are just nice, simple things that make my life easier.

link|improve this answer
feedback

Look hard at Haskel, Modula2, Modula4 and even Pascal.

Many of the new languages (I am a fan of Python) are fragile because they are too free with data.

Languages like Fortran can be well supported by compiler optimizations. C, C++ are much harder to optimize safely.

If you want the program to be correct, fast and robust the language needs to tight and unambiguous.

Python is marvelous in how it grafts well tuned and well crafted "C" code into the libraries.

link|improve this answer
feedback
  • Compile-time static type-checking (preferably Haskell-esque).
  • Arbitrary precision arithmetic as a language feature, not an afterthought.
  • Write Once Run Anywhere (Java-style)
  • Literal syntax for maps and lists (like Python, unlike Java).
  • Tuples
  • First-class functions.
link|improve this answer
show 1 more comment
feedback

My favorite is a real compile-time metalanguage like the one in D. C++ templates were a cool start, but having a full compile-time meta-language that supports simple constructs like tuples and static ifs natively without hackishness, and allows compile-time code generation via string mixins is unbelievably useful.

link|improve this answer
1  
Learn Common Lisp and use macros for compile-time full-scale language. – David Thornley Jan 13 '09 at 20:41
feedback

Don't forget for loops:-)

  • Anonymous delegates like in C#.
  • Currying and the other functional programming features.
link|improve this answer
feedback

What I like about VB.NET:

  • Verbosity (I find the verbosity refreshing, and easy for interns to read.)
  • Active sentence like structure (even to the point of its potential "left-hand aligned" nature, where nearly any line of code can have a primary identifier on the left hand side that quickly identifies the very essence of what it does, such as the otherwise unnecessary "Call", "Dim" etc... statements.)
  • Obfuscation of most aspects of garbage collection, which downright spoils you when you have to go back to non-garbage collected higher level languages.
  • A good mix between potential for Rapid Application Development and powerful features previously denied to Visual Basic (such as multithreading).
  • The fact that it, in an overwhelming majority of cases, can perform all of the tasks that C# can perform.
  • The ability to better implement object-oriented designs (as opposed to VB6).
  • Easy and intuitive container objects.

What I like about VB6:

  • Utterly Rapid Application Development in a visual environment. Nearly any utility that I need to make quickly is still written in VB6 as a result, even after having learned Python. For "singular purpose" windowed programs that perform potentially complex tasks, VB6 can be extremely quick to write for.
  • Active sentence like structure (see above)
  • Verbosity (again, see above)
  • Even easier and even more intuitive container objects (even than VB.NET).
link|improve this answer
1  
C# is, to some extent, VB.NET for people who hate the verbosity. – David Thornley Jan 13 '09 at 20:42
feedback

I like languages which make constructing functions quick. If you compare the overhead in Java to the overhead in Forth, you can understand why people write so many functions in Forth.

A very trivial example:

Java:

public static int add2(int input) {
  return input+2;
}

and in Forth:

: ADD2 2 + ;
link|improve this answer
show 1 more comment
feedback
  • for each with nice clean iterators
  • functions as first class variables
  • dump complex variables to text with introspection
  • nice constructors for array, struct, map, etc.
link|improve this answer
feedback

For C#: Delegates and lambdas and on a close second: generics. Interfaces are really nice as well.

For Perl: Implicit variables which makes the plain vanilla cases really simple to implement and of course regexs.

C++: Const references.

link|improve this answer
feedback

Single Assignment to variables. Some languages have it by design, like Erlang. Other languages don't enforce it but you can make use of it. When writing Java code almost all local variables, and a fair share of instance variables, can usually be declared "final". Do it and your code will be more clear and much easier to understand for others.

link|improve this answer
feedback

I'll mention just one feature, because I think it's overlooked in almost all language design: good support for programming with discriminated unions, including a case statement that operates by pattern matching. F# or Standard ML would be good models.

link|improve this answer
feedback

This is a bit radical: everything should be an object. Even integers and dates!

.NET Nullable Types are a step in the right direction. I know there are performance reason to use Value Types but why not give them the special designation and make int? datetime? the default and use int# and datetime# for the real value types.

link|improve this answer
feedback

Features that let you store data in one place and use it throughout a program. You can just change it in one place and have that effect the entire thing.

Like:

  • Constants
  • Inheritance
  • Modules
link|improve this answer
feedback

The ability to "design by contract" (as in Eiffel, while I'm a C, C++, C# programmer, by the way).

No more assert left to the programmer ! Hey, for each and every method, you have to tell the compiler :

  • What are the invariants in input (eg. : 0 <= x <= y )
  • What should be your initial object state (eg. : xyz is not null)

No assert, all is already build in the language. Great great great ! Take a look at this if you can.

link|improve this answer
feedback

Static semantics for determining program halt given some parameter.

I could really use that. Lemme know.

link|improve this answer
show 3 more comments
feedback

Generics, Easy data sync and manipulation.

link|improve this answer
show 1 more comment
feedback

Multiple interface inheritance and operator overloading in C#.

Edit: And how could I forget delegates. Delegates are awesome.

link|improve this answer
feedback
1 2

Your Answer

 
or
required, but never shown

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