lean-agent-core 0.2.0

Core library for tracing Lean 4 diagnostics and evaluating Lean theorem-proving agents.
Documentation
---
source: crates/lean-agent-core/tests/snapshot_tests.rs
expression: rewritten
---
import Init

namespace Sample

/-- A theorem left open. -/
theorem foo (n : Nat) : n = n := by
  rfl

def bar : Nat := by
  admit

theorem baz : True := by
  trivial

end Sample