No.pe.
Jump to navigation
Jump to search
No.pe. is the quine-avoiding constant language QuineAvoiding("Nope.", "No.")
, inspired by Nope. and No.. Its purpose is to create a Nope. derivative that doesn't allow a quine.
Syntax
If the program is exactly "Nope." (without the quotes), the output is "No.". Otherwise, the output is "Nope."
Examples
Nope. Interpreter
Hello World!
No. Interpreter
Nope.
Quine
This is impossible.
Interpreters
Written in Python:
if input() == 'Nope.': print('No.') else: print('Nope.')