So is your face.

From Esolang
Jump to navigation Jump to search

So is your face. is an esolang created by User:None1.

Syntax

So is your face. uses a stack, the stack is initially empty. Every line is a command, commands other than So is your face. pushes itself into the stack.

The command So is your face. prints the string in the top of the stack and pops it.

Example Programs

Hello World

Hello World!
So is your face.

Nope. interpreter

Nope.
So is your face.

Interpreter

Python

b=[]
while 1:
    try:
        a=input()
    except:
        break
    if a=="So is your face.":
       print(b.pop())
    else:
        b.append(a)