def createClosure(int x) fun(int) int {
return lambda(int y) int {
return x + y
}
myVar = createClosure(5)
puts myVar(3)