This commit is contained in:
Andreas Koepf 2025-01-30 22:55:04 +01:00
parent 21c47db6c1
commit ebb88e6c6a
24 changed files with 1215 additions and 814 deletions

View file

@ -2,9 +2,9 @@
import argparse
import os
import Interpreter
from Compiler import Compiler
from Compiler import Minify
from Compiler import Compiler, Minify
def process_args():
@ -54,5 +54,5 @@ def compile_file():
Interpreter.brainfuck(brainfuck_code)
if __name__ == '__main__':
if __name__ == "__main__":
compile_file()