Does anyone remember years ago in magazines like Byte where people competed to produce the most functional piece of code written in a single line of code? I remember games like Pole Position with scrollng text, etc. and fractal graphics being done this way.

Granted modern languages like C# and Java an endless amount in one statement, does anyone know of anything similar going on now? It was also inspiring and interesting stuff to see.

link|improve this question

1  
I'm a fan of the oneliner emacs command: M-x do-my-job-for-me – Paul Nathan Jul 24 '09 at 16:43
feedback

7 Answers

up vote 5 down vote accepted

There's a site called Code Golf dedicated to competing on problems in that format.

link|improve this answer
feedback

Code Golf on SO is a great for these types of challenges

link|improve this answer
feedback

There is commandlinefu.com -- good to type quickly on the shell.
But, I like code written to be more readable.

link|improve this answer
feedback

Check out any of the questions here tagged 'code-golf' for some interesting stuff!

link|improve this answer
feedback

Well I guess technically, you could write almost anything as one line of code if the language ignored white space.

Maybe some sort of HTML or web app?

How about a gigantic blob of C code?

link|improve this answer
Most folks would consider "a = b; c = d;" to be two lines of C code, even though they may be on the same textual line. – T.E.D. Jul 24 '09 at 17:38
feedback

I wouldn't consider that a very good exercise, as functional languages like Lisp are going to have an inherent advantage.

The old joke about APL is that you can write an entire OS in one line, but nobody could read it.

link|improve this answer
feedback

If you go to Project Euler and solve the problems one-by-one, the forums will have people trying to code-golf their solutions. (i.e for Problem 1, got to this forum)

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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