Revising for tomorrow's lecture

This commit is contained in:
Adam Chlipala 2022-03-13 18:10:19 -04:00
parent f3211734b9
commit c5a69b6253
2 changed files with 2 additions and 2 deletions

View file

@ -312,7 +312,7 @@ Module Ulc.
(* Function application (called "beta reduction") is the big rule here. *)
Inductive step : exp -> exp -> Prop :=
| ContextBeta : forall x e v,
| Beta : forall x e v,
value v
-> step (App (Abs x e) v) (subst v x e)

View file

@ -279,7 +279,7 @@ Module Ulc.
(** * Small-step semantics *)
Inductive step : exp -> exp -> Prop :=
| ContextBeta : forall x e v,
| Beta : forall x e v,
value v
-> step (App (Abs x e) v) (subst v x e)