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.

Self

From Esolang
Jump to navigation Jump to search

There is one command, Self, which prints "Self"

Self program

Self

Quine

Self

Quine 100

Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self Self

Interpreter

#python
def Self(program):
  for command in program.split(" "):
    if command == "Self":
      print("Self")
    else:
      raise NameError("Only recognizable command is 'Self', but got '"+command+"'!")

Other Selfs