fun outer() { var x = "outside"; fun inner() { print x; } inner(); } outer();