window.onload=function(){
var c=function(){
var i=0;
return function (){
return i++;
};
alert(c()());
}