You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Does any of this make sense? It seems weird/trivial.
moduleMainwhereimportData.Either (Either)
importData.Tuple (Tuple)
-- (∀x. a → x) ⇔ a → (∀x. x)one∷∀a
. (∀x. a→x)
→ (a→ (∀x. x))
one f = f
-- (∀x. a ∧ x) ⇔ a ∧ (∀x. x)two∷∀a
. (∀x. a→x→Tupleax)
→ (a→ (∀x. x→Tupleax))
two f = f
-- (∀x. a ∨ x) ⇔ a ∨ (∀x. x)three∷∀a
. (∀x. (a→Eitherax) → (x→Eitherax) →Eitherax)
→ ( (∀x. a→Eitherax) → (∀x. (x→Eitherax) →Eitherax) )
three f = f
The text was updated successfully, but these errors were encountered:
Does any of this make sense? It seems weird/trivial.
The text was updated successfully, but these errors were encountered: