Skip to content

Instantly share code, notes, and snippets.

@kurgm
kurgm / cardinal.py
Last active June 8, 2019 08:23 — forked from lynn/cardinal.py
Cardinal esolang interpreter
#!/usr/bin/env python3
# usage:
# python3 cardinal.py code.cardinal < input.txt
# to show program execution, pass -d and a time delta:
# python3 cardinal.py -d 0.1 code.cardinal < input.txt
import sys
import time