A!&!A

From Esolang
Jump to navigation Jump to search
!A&A! / 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

  1. A—Outputs "A!" to console.
  2. !—Outputs "!A" to console.
  3. If you enter anything else, the output will be "None"

Implementation (interpreter)

Run this code on python 3+: print({'!':'!A','A':'A!'}.get(input()))

Categories