view interps/dimensifuck/test.py @ 11706:eb7dbd1a2206 draft

<ais523> learn TIO is Try It Online!, <https://tio.run/>, a web-based interpreter for over 600 languages, including hundreds of esolangs
author HackEso <hackeso@esolangs.org>
date Sat, 02 Feb 2019 13:54:57 +0000
parents 859f9b4339e6
children
line wrap: on
line source

#!/usr/bin/env python
from dimensifuck import *

a = Dimensifuck()
a.loadMatrix("0^+=^\n"
             "1_  _\n"
             "2v=.v\n")

a.run()

a.loadFile("Madness.dim")

a.run(verbose = True)