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.
Am I?
Jump to navigation
Jump to search
| 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"))