var i = 5; function closure(){ return function(new_i) { i = new_i; }} var c = closure();print(i);c(10);print(i);
Standard input is empty
5 10
The brand new service which powers Ideone!
Widget for compiling and running the source code in a web browser!