{-# OPTIONS --cubical --safe #-}
module Cubical.Foundations.Pointed.Base where

open import Cubical.Foundations.Prelude

Pointed : ( : Level)  Type (ℓ-suc )
Pointed  = Σ[ A  Type  ] A

typ :  {} (A∙ : Pointed )  Type 
typ = fst

pt :  {} (A∙ : Pointed )  typ A∙
pt = snd