mirror of
https://github.com/SinTan1729/lean-talk-sp24.git
synced 2024-12-26 05:38:37 -06:00
18 lines
489 B
Text
18 lines
489 B
Text
|
import Lake
|
||
|
open Lake DSL
|
||
|
|
||
|
package «Lean Talk SP24» where
|
||
|
-- Settings applied to both builds and interactive editing
|
||
|
leanOptions := #[
|
||
|
⟨`pp.unicode.fun, true⟩, -- pretty-prints `fun a ↦ b`
|
||
|
⟨`pp.proofs.withType, false⟩
|
||
|
]
|
||
|
-- add any additional package configuration options here
|
||
|
|
||
|
require mathlib from git
|
||
|
"https://github.com/leanprover-community/mathlib4.git"
|
||
|
|
||
|
@[default_target]
|
||
|
lean_lib «Lean Talk SP24» where
|
||
|
-- add any library configuration options here
|