Mention implementation in README and fix mangled Markdown.
catseye
10 years ago
147 | 147 | encounters the end of input, writes out the bits in the reverse order |
148 | 148 | they were read in, with the following changes: |
149 | 149 | |
150 | - for every "1" in the input, a "1" comes out | |
151 | - for every "0" in the input, "10" comes out | |
152 | - there's an extra "1" at the end of the output | |
150 | * for every `1` in the input, a `1` comes out | |
151 | * for every `0` in the input, `10` comes out | |
152 | * there's an extra `1` at the end of the output | |
153 | 153 | |
154 | 154 | +------------+ |
155 | 155 | | /} | |
190 | 190 | This document was adapted from [the esolangs.org wiki page for |
191 | 191 | Nhohnhehr](http://www.esolangs.org/wiki/Nhohnhehr), which, like all |
192 | 192 | esowiki articles, has been placed under public domain dedication. |
193 | ||
194 | Implementation | |
195 | -------------- | |
196 | ||
197 | The Nhohnhehr distribution contains a Nhohnhehr interpreter, written | |
198 | in Python, based on [this implementation of | |
199 | Nhohnhehr](http://esolangs.org/wiki/User:Marinus/Nhohnhehr_interpreter) | |
200 | by [Marinus](http://www.esolangs.org/wiki/User:Marinus). It | |
201 | is effectively the reference interpreter, since it seems to correctly | |
202 | implement the language described here, and there are, to the best of | |
203 | my knowledge, no other implementations of Nhohnhehr in existence. | |
204 | Like all content from the esowiki, it too is in the public domain. |