{-

This file contains:

- Definition of the Bouquet of circles of a type aka wedge of A circles

-}
{-# OPTIONS --safe #-}

module Cubical.HITs.Bouquet.Base where

open import Cubical.Foundations.Prelude
open import Cubical.Foundations.Pointed

private
  variable
     : Level

data Bouquet (A : Type ) : Type  where
  base : Bouquet A
  loop : A  base  base

Bouquet∙ : Type   Pointed 
Bouquet∙ A = Bouquet A , base