Our Spartan (intensional) Martin-LΓΆf type theory has the empty type βˆ…,
the unit type πŸ™, two-point-type 𝟚, natural numbers β„•, product types Ξ ,
sum types Ξ£ (and hence binary product types _Γ—_), sum types _+_,
identity types _=_, and universes 𝓀, π“₯, 𝓦, ....

\begin{code}

{-# OPTIONS --without-K --exact-split --safe --auto-inline #-}

module MLTT.Spartan where

open import MLTT.Empty           public
open import MLTT.Unit            public
open import MLTT.Two             public
open import MLTT.NaturalNumbers  public
open import MLTT.Plus            public
open import MLTT.Pi              public
open import MLTT.Sigma           public
open import MLTT.Universes       public
open import MLTT.Id              public

open import Notation.General public

\end{code}