Pizza

From Esolang
Jump to navigation Jump to search

Pizza is a joke programming language created by Nicholas Smith as a glitch to the BBC question about false programming language on 1 July 2018. It contains only one instruction. It was designed to be an April Fool on the GlobalGameDevelopersForum site.

Syntax

Syntax is one very simple: The instruction is "READ", which writes "H3110" to a text file named "0WTPWT.txt".

Example

This example writes "H3110" to a text file named "0WTPWT.txt".

READ

Implementation

Written in Python 3.

i = input("Enter Command: ")
if i != 'READ':
    print("")
else:
    the_file = open("0WTPWT.txt","w") 
    the_file.write("H3110")
    the_file.close()

See also