catseye / Befunge-93

MIRROR of https://codeberg.org/catseye/Befunge-93 : The NEW reference distribution for Befunge-93!
https://catseye.tc/node/Befunge-93
Other
98 stars 9 forks source link

Fixed the missing space #21

Closed amicloud closed 5 years ago

amicloud commented 5 years ago

There was a space missing between the numbers and the word "bottles".

j4james commented 5 years ago

The . command in Befunge already outputs a space after the number (you can read the explanation in the documentation here). So with this patch, the program is now effectively outputting two spaces.

There are a number of Befunge interpreters that get this command wrong, so if you're using an interpreter that has this bug, then the output may indeed look like it's missing a space, but it's definitely the interpreter that is at fault.

amicloud commented 5 years ago

Oh neat. Well, I feel like an idiot but neat. Thanks