Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion REPL/Main.lean
Original file line number Diff line number Diff line change
Expand Up @@ -426,7 +426,7 @@ where loop : M IO Unit := do
if query = "" then
return ()
if query.startsWith "#" || query.startsWith "--" then loop else
IO.println <| toString <| ← match ← parse query with
IO.println <| compress <| ← match ← parse query with
| .command r => return toJson (← runCommand r)
| .file r => return toJson (← processFile r)
| .proofStep r => return toJson (← runProofStep r)
Expand Down