-
Notifications
You must be signed in to change notification settings - Fork 1
Open
Description
While looking at cstep ((com * state) -> (com * state) -> Prop),
I wanted to revisit the definition of ().
However, (Print "") only shows me the message below.
mult =
fix mult (n m : nat) {struct n} : nat :=
match n with
| 0 => 0
| S p => m + mult p m
end
: nat -> nat -> nat
Argument scopes are [nat_scope nat_scope]
Reactions are currently unavailable