Hacker News new | ask | show | jobs
by catnaroek 3120 days ago
Shadowing isn't the same thing as redefining. Try evaluating the following expression:

    let x = 4 ; f y = x + y in let x = 6 in f 10