plasl day2p1 and a lot of other junk i never pushed

This commit is contained in:
m
2025-12-03 19:47:49 -05:00
parent 69d5dabb05
commit 70facc84b9
11 changed files with 5582 additions and 59 deletions

2
run.py
View File

@@ -70,7 +70,7 @@ def generate_commands_pladcl(problem: Problem, flags: Optional[list[str]]=None):
run_compile_command(["pladclc", problem.source_location, "-o", problem.build_location] + (flags if flags else []))
run_compile_command(["python3", preprocess_location, problem.resource_location, "-o", problem.resource_build_location])
run_run_command(" ".join(["cat", problem.resource_build_location, "|", "dc", problem.build_location]), shell=True)
run_run_command(" ".join(["cat", problem.resource_build_location, "|", "./dc", problem.build_location]), shell=True)
def generate_commands_pascal(problem: Problem, flags: Optional[list[str]]=None):