vote up 14 vote down star
3

I always miss python's built-in doc strings when working in other languages. I know this may seem odd, but it allows me to cut down significantly on excess comments while still providing a clean description of my code and any interfaces therein.

  • What Language Feature Can You Just Not Live Without?

If someone were building a new language and they asked you what one feature they absolutely must include, what would it be?

This is getting kind of long, so I figured I'd do my best to summarize:

Paraphrased to be language agnostic. If you know of a language which uses something mentioned, please at it in the parenthesis to the right of the feature. And if you have a better format for this list, by all means try it out (if it doesn't seem to work, I'll just roll back).

Regular Expressions ~ torial (Perl)

Garbage Collection ~ SaaS Developer (Python, Perl, Ruby, Java, .NET)

Anonymous Functions ~ Vinko Vrsalovic (Lisp, Python)

Arithmetic Operators ~ Jeremy Ross (Python, Perl, Ruby, Java, C#, Visual Basic, C, C++, Pascal, Smalltalk, etc.)

Exception Handling ~ torial (Python, Java, .NET)

Pass By Reference ~ Chris (Python)

Unified String Format WalloWizard (C#)

Generics ~ torial (Python, Java, C#)

Integrated Query Equivalent to LINQ ~ Vyrotek (C#)

Namespacing ~ Garry Shutler ()

Short Circuit Logic ~ Adam Bellaire ()

flag

84 Answers

1 2 3 next
vote up 32 vote down

Anonymous functions

link|flag
show 2 more comments
vote up 8 vote down

Namespacing

link|flag
vote up 40 vote down

Regular Expressions.

link|flag
show 6 more comments
vote up 13 vote down

Pass by reference

link|flag
vote up 10 vote down

Generic Containers (.Net)

link|flag
vote up 5 vote down

Generics and Enums (Java 1.5)

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

Unified string format (unlike C++, like C#)

link|flag
vote up 9 vote down

Delegates in .NET..

link|flag
vote up 4 vote down

A way to apply a function to all/some/any elements on a collection in a single statement

link|flag
vote up 7 vote down

Reflection.

link|flag
vote up 15 vote down

Definitely Generics...

link|flag
vote up 0 vote down

Reflection, serialization, generics,... (C#)

link|flag
vote up 17 vote down

Exception Handling :-D

link|flag
vote up 1 vote down

with .. do (Delphi)

link|flag
vote up 4 vote down

Conditional compiling

#if .. #then .. #else

link|flag
vote up 3 vote down

Attributes/Annotations

link|flag
vote up 14 vote down

Turing completeness... (Well, duh.)

link|flag
show 2 more comments
vote up 3 vote down

Clean consistent syntax which is easily scanned and reads naturally (like poetry). I've always felt strongly that language code should speak best to people, and tell the story of what it does. Let the compiler/interpreter figure out how to instruct the computer...

link|flag
vote up 51 vote down

Garbage Collection

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

With keyword in VB.NET

link|flag
vote up 2 vote down

Turing complete... :)

link|flag
vote up 7 vote down

The foreach statement in C#

link|flag
vote up 12 vote down

.Net LINQ !

link|flag
vote up 2 vote down

Ruby's Closures

link|flag
show 2 more comments
vote up 0 vote down

Single and double hash in macros...

link|flag
vote up 18 vote down

Couldn't live without arithmetic operators.

link|flag
show 2 more comments
vote up 0 vote down

Any language should support some way of creating abstractions and allow tasks decomposition.

link|flag
vote up 9 vote down

variable declarations :)

link|flag
vote up 2 vote down

list comprehensions

link|flag
vote up 9 vote down

I can't live without if-else

link|flag
1 2 3 next

Your Answer

Get an OpenID
or

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