Ciencias de la Computación

9
ejercicio baz_num_elts de Fundamentos de software

Estoy en el siguiente ejercicio en Fundamentos de software : (** **** Exercise: 2 stars (baz_num_elts) *) (** Consider the following inductive definition: *) Inductive baz : Type := | x : baz -> baz | y : baz -> bool -> baz. (** How _many_ elements does the type [baz] have? (* FILL...