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.

BuxRo

From Esolang
Jump to navigation Jump to search

An esolang created by User: Areallycoolusername. It has only one command and that's "Oof...". This command is used to print whatever the user desires. When any other wording is used, BuxRo will return an error code which is an infinite loop of "oof."

Interpreter in Python 3 Made By: User: Areallycoolusername

i = input("Oof?\n")
if i == 'Oof...':
	print("Oof!\n")
	j = input()
	
if i != 'Oof...':
	i = 1
while i == 1:
	print("oof.")
	
	
if j == 'Oof...':
	i = 1
while i == 1:
	print("oof.")
else:
	print(j)

Golfed interpreter by User:Quito0567

i = input("Oof?\n") != 'Oof...' or (j := input()) == 'Oof...'
while i: print("oof.")
if i: print(j)

Hello World Program

Oof...
Hello, world!

Output:

Oof?
Oof!

Hello, world!