feat(grader): add python grader with pyproject.toml and main script

This commit is contained in:
2025-08-18 16:00:38 +02:00
commit 8adaeaa656
4 changed files with 75 additions and 0 deletions

6
main.py Normal file
View File

@@ -0,0 +1,6 @@
def main():
print("Hello from grader!")
if __name__ == "__main__":
main()