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

vote up 1 vote down

I'm a big fan of functions.

link|flag
vote up 2 vote down

Lambdas for sure.

link|flag
vote up 0 vote down

For in statement for object inspection.

link|flag
vote up 0 vote down

Attributes in .NET. Once you really understand them and learn how to use them properly (that is, not to overuse them), it opens up a whole new world (now I'm exaggerating a bit).

link|flag
vote up 0 vote down

Locking for thread safety

link|flag
vote up 2 vote down

Pointers!

Really, I'm an old C fart. I cannot live without them anymore..

link|flag
vote up 0 vote down

In C#, the Using () {....} blocks have solved more memory leaks than I can count.

Kind of goes with garbage collection, but more specific.

link|flag
vote up 1 vote down

the language feature I am missing is "remove all bug". Might have to be implemented as a compiler option though, so that oldtimers can continue to do without that feature.

Serious answer: Templates/Generics

link|flag
vote up 0 vote down

command line compiles

link|flag
vote up 1 vote down

ColdFusion's cfdump

Use the cfdump tag to get the elements, variables, and values of most kinds of ColdFusion objects. Useful for debugging. You can display the contents of simple and complex variables, objects, components, user-defined functions, and other elements.

There's nothing that cfdump can't do :D

Now that I'm messing with .NET, this is by far the most useful feature of ColdFusion that I wish I could replicate (of course, when I do JavaScript I wish for it as well :D ).

link|flag
vote up 0 vote down

HTTP(s) support

link|flag
vote up 1 vote down

User-Friendly Exception Handling ;)

link|flag
vote up 0 vote down

Solid: the iterator ++ -- etc...

Abstract: recursion (once I 'got' it)

link|flag
vote up 6 vote down

comments: single or multiline.

link|flag
vote up 0 vote down

Subqueries in SQL

link|flag
vote up 2 vote down

Parametric polymorphism and dependent types.

link|flag
vote up 0 vote down

Symbolic names.

link|flag
vote up 2 vote down

"first class functions" aka "functions as first class objects"

link|flag
vote up 4 vote down

Hashtables, hashmaps or php arrays :D

link|flag
vote up 2 vote down

a [plus equals] b

link|flag
vote up 2 vote down

*args and **kwargs in Python.

link|flag
vote up 15 vote down

short-circuit logic. Seriously, try programming VBscript for a while and you'll be begging to be able to do this:

   if (foo.exists && foo.var > 0)

and not have it crash...

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

The ability to define DSLs, incorporated directly into the language. As easy to define an operator in the custom DSL language as it is to define a normal function in the "plain" language.

Writing my code as a description of the problem using a vocabulary that fits the problem and lets me focus on the hard parts, instead of writing low-level plumbing and boilerplate code.

Lisp macros.

link|flag
vote up 3 vote down

Variable name declarations. When I realized that both Python and Ruby gladly will interpret your fat-fingerings as the introduction of a new variable, I was really, really horrified. It made me thankful once again for Perl's use strict and my $var declarations.

link|flag
show 4 more comments
vote up 9 vote down

I can't live without if-else

link|flag
vote up 2 vote down

list comprehensions

link|flag
vote up 9 vote down

variable declarations :)

link|flag
vote up 0 vote down

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

link|flag
vote up 18 vote down

Couldn't live without arithmetic operators.

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

Single and double hash in macros...

link|flag

Your Answer

Get an OpenID
or

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