If anyone can point me in the direction of why this works it would be greatly appreciated.
It was from my first f# lab in class.
How is add20 working when I have no parameters set to it(Problem 2C2).
////function that adds 10 to it
////Problem 2C1 ///
let k = 10
let add10 z k = z + k
////End Problem 2C1///
////Problem 2C2 ///
let z = 20
let add20 = add10 z
////End Problem 2C2//