Working…
Some checks failed
Lean Action CI / build (push) Has been cancelled
Create Release / Add Lean release tag (push) Has been cancelled

This commit is contained in:
Stefan Kebekus
2025-10-25 07:07:57 +02:00
parent d1fc1b634f
commit 7eb9cf9772
5 changed files with 38 additions and 14 deletions

9
run_aristotle.py Executable file
View File

@@ -0,0 +1,9 @@
import asyncio
import aristotlelib
async def main():
# Prove a theorem from a Lean file
solution_path = await aristotlelib.Project.prove_from_file("/home/kebekus/Mathe/aristotle/Basic.lean")
print(f"Solution saved to: {solution_path}")
asyncio.run(main())