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.

Prints the name of this language

From Esolang
Jump to navigation Jump to search

Prints the name of this language is an esolang invented by User:None1. Prints the name of this language prints the name of this language: Prints the name of this language, so Prints the name of this language is ConstantLanguage("Prints the name of this language").

Examples

Prints the name of this language/Quine/Self-interpreter

Prints the name of this language

Self-interpreter that's not a quine

N

Interpreters

Python

print("Prints the name of this language")

Text

Prints the name of this language

C

#include <stdio.h>

int main(void)
{
  puts("Prints the name of this language");
  return 0;
}

C++

#include <iostream>

int main() {
  std::cout << "Prints the name of this language" << std::endl;
  return 0;
}

Go

package main

import fmt

func main() {
  fmt.Println("Prints the name of this language")
}

Lua

print"Prints the name of this language"