integrate binders in def #46

Open
opened 2024-05-10 19:57:31 +02:00 by rhi · 0 comments
Owner

this kinda thing

-- old:                         -- new:
def plus : ℕ → ℕ → ℕ =          def plus (m n : ℕ) : ℕ =
  λ m n ⇒                          case m return ℕ of {
  case m return ℕ of {               zero      ⇒ n;
    zero      ⇒ n;                   succ _, p ⇒ succ p
    succ _, p ⇒ succ p             }
  }

maybe also allow the return type to be synthed if the body is an elim

this kinda thing ``` -- old: -- new: def plus : ℕ → ℕ → ℕ = def plus (m n : ℕ) : ℕ = λ m n ⇒ case m return ℕ of { case m return ℕ of { zero ⇒ n; zero ⇒ n; succ _, p ⇒ succ p succ _, p ⇒ succ p } } ``` maybe also allow the return type to be synthed if the body is an elim
rhi added the
language
ux
labels 2024-05-10 19:57:31 +02:00
Sign in to join this conversation.
No milestone
No project
No assignees
1 participant
Notifications
Due date
The due date is invalid or out of range. Please use the format "yyyy-mm-dd".

No due date set.

Dependencies

No dependencies set.

Reference: rhi/quox#46
No description provided.