We are currently working on new rules for what content should and shouldn't be allowed on this website, and are looking for feedback! See Esolang:2026 topicality proposal to view and give feedback on the current draft.

Around and around, sleeping sound

From Esolang
Jump to navigation Jump to search
This article is not detailed enough and needs to be expanded. Please help us by adding some more information.

Around and around, sleeping sound is the name of a 2D programming language made by User:Iamcalledbob, on June 16, 2018. It only has 4 commands:

Commands

Cmd Description
< Move the data pointer left. Add 1. When the value in the data pointer is over 255, change the value in the data pointer into 0.
> Move the data pointer right.
Z Outputs the value in the data pointer.
@ If pointer byte = 0, turn clockwise. Else, turn counter-clockwise.

Reversibility

Each of the four commands could be reversed, thus meaning that the language is reversible:

Cmd Description
< Subtract 1. If the value in the data pointer was 0, change the value in the data pointer into 255. Move the data pointer right
> Move the data pointer left.
Z Remains the same
@ If pointer byte = 0, turn counter-clockwise. Else, turn clockwise.