Skip to content

Latest commit

 

History

History
27 lines (19 loc) · 271 Bytes

be_kind.md

File metadata and controls

27 lines (19 loc) · 271 Bytes
  1. What is the kind of a?
a -> a

Ans - Kind of a is '*'

  1. What are the kinds of b and T?
a -> b a -> T (b a)

Ans -
Kind of b is `* -> *`
Kind of T is `* -> *`

3. What is the kind of c?

c a b -> c b a

Ans -
The kind of c is `* -> * -> *`