vote up 1 vote down star
1

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.

flag

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

7 Answers

vote up 4 vote down check

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 1 vote down

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

link|flag
vote up 0 vote down

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|flag
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 at 17:38
vote up 0 vote down

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|flag
vote up 0 vote down

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

Your Answer

Get an OpenID
or

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