A!&!A
(Redirected from !A&A!)
![]() |
|
| Designed by | User:7rigs |
|---|---|
| Appeared in | 2025 |
| Computational class | Unknown |
| Reference implementation | Unimplemented |
- This is still a work in progress. It may be changed in the future.
Overview
A!&!A (also uses "!A&A!") — minimalistic joke esolang, inspired by AAAAAAAAAAAAAA!!!! and 16 bytes :P
A!&!A can only print "A!" or print "!A".
A!&!A code takes up 1 character, and interpreter takes up 39 bytes
Commands
A—Outputs "A!" to console.!—Outputs "!A" to console.- If you enter anything else, the output will be "None"
Implementation (interpreter)
Run this code on python 3+:
print({'!':'!A','A':'A!'}.get(input()))
