Ramen is a programming language.
Original version(written in Go) is here
You need nim and nimble to install the binary.
nimble install https://github.com/minoritea/ramen.nim
Clone this repository to somewhere, and run the below command in the repository.
ramen examples/hello.ramen
A sequence of 'π' represents a command of the language. Other characters are delimiters or comments.
There are only eight commands for the language(all commands are the same as Brainf*ck's one).
-
π Increment the value to which the program pointer points
-
ππ Decrement the value to which the program pointer points
-
πππ Increment the program pointer
-
ππππ Decrement the program pointer
-
πππππ Read a unicode character from Stdin and set the value to which the program pointer points to it
-
ππππππ Write the value to which the program pointer points to Stdout
-
πππππππ If the value to which the program pointer points is zero, jump to the next 'ππππππππ'
-
ππππππππ If the value to which the program pointer points is not zero, jump to 'πππππππ' which most recently appeared