FH
Jump to navigation
Jump to search
FH is an Esolang designed by PSTF.
This is derived from Deadfish, but this has no commands because e and a have something similar with o.
Syntax
All characters are ignored. That's it.
Examples
Do nothing
p
Do nothing 2
iiiio
Quine
Interpreter
An interpreter realized in Common Lisp shall be produced:
(defun interpret-FH (code) "Interprets the piece of FH source CODE and returns no value." (declare (type string code)) (declare (ignore code)) (values))