mirror of
https://github.com/leanprover/lean4.git
synced 2026-03-17 18:34:06 +00:00
This PR sets up the new integrated test/bench suite. It then migrates all benchmarks and some related tests to the new suite. There's also some documentation and some linting. For now, a lot of the old tests are left alone so this PR doesn't become even larger than it already is. Eventually, all tests should be migrated to the new suite though so there isn't a confusing mix of two systems.
24 lines
534 B
Lean4
24 lines
534 B
Lean4
|
||
def f (x : Nat) : Nat × (Nat → String) :=
|
||
let x1 := x + 1
|
||
let x2 := x + 2
|
||
let x3 := x + 3
|
||
let x4 := x + 4
|
||
let x5 := x + 5
|
||
let x6 := x + 6
|
||
let x7 := x + 7
|
||
let x8 := x + 8
|
||
let x9 := x + 9
|
||
let x10 := x + 10
|
||
let x11 := x + 11
|
||
let x12 := x + 12
|
||
let x13 := x + 13
|
||
let x14 := x + 14
|
||
let x15 := x + 15
|
||
let x16 := x + 16
|
||
let x17 := x + 17
|
||
(x, fun y => toString [x1, x2, x3, x4, x5, x6, x7, x8, x9, x10, x11, x12, x13, x14, x15, x16])
|
||
|
||
def main (xs : List String) : IO Unit :=
|
||
IO.println ((f (xs.headD "0").toNat!).2 (xs.headD "0").toNat!)
|