# Tests closures # import std; fn makeClosure(x: int): fn: int { fn inner: int { return x; } return inner; } fn makeClosureTwo(y: int): fn: int { fn inner: int { return y; } return inner; } makeClosureTwo(38)();