Cleanup
Some checks failed
Lean Action CI / build (push) Has been cancelled

This commit is contained in:
Stefan Kebekus
2025-10-25 07:19:27 +02:00
parent 7eb9cf9772
commit 20a6e02774
2 changed files with 5 additions and 1 deletions

2
.gitignore vendored
View File

@@ -1 +1,3 @@
/.lake
/asyncio
/Basic_aristotle.lean

View File

@@ -1,9 +1,11 @@
#!/usr/bin/python
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")
solution_path = await aristotlelib.Project.prove_from_file("/home/kebekus/Mathe/aristotle/Aristotle/Basic.lean")
print(f"Solution saved to: {solution_path}")
asyncio.run(main())