blob: 0ca1ef9bd5bf583c03def16527a57c0343f525fd (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
import Lake
open Lake DSL
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git"
package «hashmap» {
-- add package configuration options here
}
lean_lib «HashmapMain» {
-- add library configuration options here
}
lean_lib «Base» {
-- add library configuration options here
}
@[default_target]
lean_exe «hashmap» {
root := `Main
}
|