19 lines
367 B
Text
19 lines
367 B
Text
import Lean
|
|
|
|
/-- My new test option -/
|
|
register_option test : Nat := {
|
|
defValue := 10
|
|
descr := "testing"
|
|
}
|
|
|
|
/-- My new builtin test option -/
|
|
register_builtin_option testb : Nat := {
|
|
defValue := 10
|
|
descr := "testing"
|
|
}
|
|
|
|
/-- My new simp attribute -/
|
|
register_simp_attr mysimp
|
|
|
|
/-- config elab -/
|
|
declare_config_elab elabSimpConfig' Lean.Meta.Simp.Config
|