Hexdump

From Esolang
Jump to navigation Jump to search

Hexdump is an esolang invented by User:None1.

Execution

All programs in hexdump are hex dumps, when running, hexdump simply converts its program into normal text.

Example Programs

Hello World

48 65 6C 6C 6F 20 57 6F 72 6C 64 21

Nope. Interpreter

4E 6F 70 65 2E

Interpreters

Python

print("".join([chr(int(i,16)) for i in __import__("sys").stdin.read().split()]))

Special Usages

Some esolangs stores its program as a binary file, so their programs are usually represented as hex dump in websites. You can simply treat these hex dumps as a program in Hexdump and run it to get the actual program that runs correctly.