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.
π±π
Jump to navigation
Jump to search
π±π is a joke esoteric programming language designed to be Plushie-complete, and has no further computational power.
Overview
The language has a single 1-trit register A initialized to 0. The language has the following commands:
- π± sets A to 2
- π prints "4" if A is 2, else, it prints "31"
Computational class
π±π is Plushie-complete because it is capable of setting a variable to 2:
π±
printing 4:
π±π
and printing 31:
π
Implementations
Python
code = "π±π"
a = 0
for c in code:
if c == 'π±':
a = 2
elif c == 'π':
print(4 if a == 2 else 31)
else:
pass