Skip to content

Latest commit

 

History

History
19 lines (19 loc) · 558 Bytes

README.md

File metadata and controls

19 lines (19 loc) · 558 Bytes

Multifunge

Multifunge is an esoteric programming language based on Asciidots. You can find a description of how the language works here. Once you download the interpreter, there are two ways to run a multifunge program.

  • Pass the name of the multifunge file as an argument in the command line.
./multifunge.py your-program.mfg
  • Import the interpreter into a python program, and use the run function.
import multifunge
code = """
@ ? \   v
@?v
  \[+]!.
  >    [*]!.
"""
multifunge.run(code)