Am I?

From Esolang
Jump to navigation Jump to search
Am I?
Designed by User:IHaven'tComeUpWithANameYet
Appeared in 2025
Computational class Unknown
Reference implementation Unimplemented
This article is not detailed enough and needs to be expanded. Please help us by adding some more information.

Am I? is joke language thats randomly outputs yes or no.

Commands

Output it with LF Output it without LF
Standart O o
A!&!A variation A !
small variation + .

Why esolang name is "Am I?"?
Why not "Yes/No"?

Well, I figured "Yes/No" was probably taken, so I used "Am I?" because it's a frequently asked question...

Interpreters

Python

Standart variation

import random
for c in input():
    if c=="o":print(random.choice("no","yes"), end="")
    elif c=="O":print(random.choice("no","yes"))