bound-variable Questions
3
Using the De Bruijn notation, it is possible to define lambda terms as:
data BTerm = BVar Int | BLam BTerm | BApp BTerm BTerm
Or using the usual notation,
data Term = Var String | Lam String Term |...
Hangover asked 29/5, 2021 at 6:8
2
I've been programming for a long time (too long, actually), but I'm really struggling to get a handle on the terms "Free Variables" and "Bound Variables".
Most of the "explanations" I've found onl...
Cyndy asked 18/2, 2014 at 13:50
1
© 2022 - 2024 — McMap. All rights reserved.