vote up 6 vote down star
1

I am not really a fan of code golf, but I have to wonder, is there an esoteric language designed for it?

I mean a language with following properties:

  • Common programs may be expressed in very short amount of characters

  • It uses ASCII character set effectively (for example, common operators are not identifiers, so they don't have to be separated by whitespace, character usage is distributed more or less evenly because we cannot use Huffman coding and so on)

  • Except the terse syntax, it should have very expressible and clean semantics (like, let's say, Python or Scheme); it shouldn't be difficult to program in

  • It doesn't need features for large scale programs, such as OOP, but it definitely should allow custom functions and data structures

  • It should have a large standard library, identifiers in this library should be as short as possible

Maybe it should be called CG? Languages that can be a source of inspiration are Forth, APL and Joy.

flag

4 Answers

vote up 10 vote down check

GolfScript

Quoting their site:

GolfScript is a stack oriented esoteric programming language aimed at solving problems (holes) in as few keystrokes as possible. It also aims to be simple and easy to write.

The other one could be J but it is not designed to code golf

link|flag
1  
Just hit a sample code on stackoverflow at stackoverflow.com/questions/1575096/… – Etan Oct 18 at 10:08
Seems cute. Thanks. – J S Oct 18 at 10:10
Although, inexplicably golfscript has a dozen or so predefines that could have been abbreviated to single chars. – gnibbler Nov 3 at 9:55
vote up 7 vote down

Another example is HQ9+. It is not Turing-complete, so it cannot be used to solve every Code Golf challenge, but it can solve three common ones very easily in just a single character: the language only has three commands, H, which prints "Hello, world!", Q, which prints the running program's source code (quine) and 9, which prints the lyrics the the song "99 bottles of beer". It also has a fourth command, +, which increments the accumulator register. However, since there is no command for reading, testing, or otherwise accessing the accumulator register, this command is useless.

There is also an object-oriented extension of HQ9+, called HQ9++. It adds a fifth command, ++, which instantiates a new object (and, for reasons of backwards compatibility, also increments the accumulator register twice), but again, there's nothing you can actually do with that object.

link|flag
Yes, I heard of it, but didn't remember the name. Glad you mention it, even though it doesn't fit my specs. – J S Oct 18 at 11:17
ROFL that cracked me up. But here's a serious one - Brainfuck is Turing-complete: en.wikipedia.org/wiki/Brainfuck – Allon Oct 18 at 12:59
@Allon, Writing a BF interpreter in language X is a relatively easy way to show that X is Turing Complete – gnibbler Oct 20 at 21:24
That is seriously crazy. – Kugel Nov 13 at 0:50
1  
The cool thing about HQ9+ is that it is a great example of the power of Domain Specific Languages. – Jörg W Mittag Nov 13 at 2:23
vote up 1 vote down

It used to be APL where it was considered bad form to need two lines for a program.

Though I'm not really qualified to talk about APL, as I didn't take the course Structured Programming in APL our EE department offered as part of my EE minor.

link|flag
vote up 6 vote down

I thought this was called "Perl."

link|flag
hehehehe :))))) – ldigas Oct 18 at 10:18

Your Answer

Get an OpenID
or

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