11 lines
199 B
Lean4
11 lines
199 B
Lean4
|
|
import Mathlib.Tactic.TypeStar
|
|||
|
|
|
|||
|
|
namespace Spa
|
|||
|
|
|
|||
|
|
class Interp (α : Type*) (dom : outParam Type*) where
|
|||
|
|
interp : α → dom
|
|||
|
|
|
|||
|
|
notation:max (priority := high) "⟦" v "⟧" => Interp.interp v
|
|||
|
|
|
|||
|
|
end Spa
|