FH

From Esolang
Jump to navigation Jump to search

FH is an Esolang designed by PSTF.

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))

See also

APLWSI

Categories