Initial commit

This commit is contained in:
Leni Aniva 2023-05-07 15:19:45 -07:00
commit 9bba78eb1d
5 changed files with 27 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
/build
/lake-packages

4
Main.lean Normal file
View File

@ -0,0 +1,4 @@
import Pantograph
def main : IO Unit :=
IO.println s!"Hello, {hello}!"

1
Pantograph.lean Normal file
View File

@ -0,0 +1 @@
def hello := "world"

19
lakefile.lean Normal file
View File

@ -0,0 +1,19 @@
import Lake
open Lake DSL
package pantograph {
-- add package configuration options here
}
require mathlib from git
"https://github.com/leanprover-community/mathlib4.git" @ "8e5a00a8afc8913c0584cb85f37951995275fd87"
lean_lib Pantograph {
-- add library configuration options here
}
@[default_target]
lean_exe pantograph {
root := `Main
}

1
lean-toolchain Normal file
View File

@ -0,0 +1 @@
leanprover/lean4:nightly-2023-05-06