fn makeClosure(n: int): fn: int { var n = n; fn inner: int { return n; } return inner; } var closure = makeClosure(1); closure();