7 lines
396 B
Text
7 lines
396 B
Text
prelude set_option pp.beta false #check λ {A : Type} (B : Type) (a : A) (b : B), a
|
|
#check λ {A : Type} {B : Type} (a : A) (b : B), a
|
|
#check λ (A : Type) {B : Type} (a : A) (b : B), a
|
|
#check λ (A : Type) (B : Type) (a : A) (b : B), a
|
|
#check λ [A : Type] (B : Type) (a : A) (b : B), a
|
|
#check λ {{A : Type}} {B : Type} (a : A) (b : B), a
|
|
#check λ {{A : Type}} {{B : Type}} (a : A) (b : B), a
|