1BNWL

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.

1BNWL(1-Bit Non-Warpping Language) is variant of Brainfuck with 1-bit tape invented by User:ChuckEsoteric08 in 2022.

Commands Changed

+ will set current cell to 1, and - will set current cell to 0 and , is deleted.

Goals

  • Creating language that is easy to implement

Computational class

It is Turing-complete as long as tape is unbounded. It's proven by translation from Smallfuck:

> - >>
< - <<
* - >+<[->-<]>[<+>-]<
[ - [
] - [

See also

External resources

Implemented in go by User:Nmcassa