OHE
Jump to navigation
Jump to search
OHE is an esolang created by User:ResU in 2021. Every program prints "Hello, world!".
Examples
Hello, world!
Quine
Hello, world!
Implementations
The following provides a simple implementation in Common Lisp:
(defun interpret-OHE (&optional (code "")) "Interprets the OHE CODE and returns NIL." (declare (type string code) (ignore code)) (format T "~&Hello, world!"))