I was just reading a bit about the HQ9+ programming language ( http://esolangs.org/wiki/HQ9 , http://en.wikipedia.org/wiki/HQ9%2B and http://www.cliff.biffle.org/esoterica/hq9plus.html ), and it tells me something about a so called 'accumulator' which can be incremented, but not be accessed. Also, using the + doesn't manipulate the result:

code

H+H

result

Hello World
Hello World

Can anyone explain me how this works, what this does and if it even makes any sense? Thanks

link|improve this question

73% accept rate
feedback

4 Answers

up vote 4 down vote accepted

Having written an implementation, I think I can say without a doubt that it makes no sense at all. I advise you to not worry about it; it's a very silly language after all.

link|improve this answer
I do need to know what it excactly does hehe. I am writing an interpreter for it :x – WTP'-- May 4 '10 at 15:07
1  
@Konig - based on the description of the language it seems rather useless and you can probably do whatever you want with the + as long as it doesn't affect anything else. I would just ignore it in the implementation since incrementing something you can't access makes no sense. – SB. May 4 '10 at 15:16
feedback

It's a joke.

There's also an object-oriented extension of HQ9+, called HQ9++. It has a new command ++ which instantiates an object, and, for reasons of backwards-compatibility, also increments the accumulator register twice. And again, since there is no way to store, retrieve, access, manipulate, print or otherwise affect an object, it's completely useless.

link|improve this answer
feedback

It increments something not accessible, not spec-defined, and apparently not really even used. I'd say you can implement it however you want or possibly not at all.

link|improve this answer
feedback

Actually, I am mistaken.

The accumulator is the register to which the result of the last calculation is stored. In an Intel x86, any register may be specified as the accumulator, except in the case of MUL.

Source:

http://en.wikipedia.org/wiki/Accumulator_(computing)

I was quite surprised the first time I visited the third site in your question to find out a schoolmate of mine wrote the OCaml implementation at the bottom of the page.

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.