You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
fun makeCounter() {
|
|
var i = 0;
|
|
fun count() {
|
|
i = i + 1;
|
|
print i;
|
|
}
|
|
|
|
return count;
|
|
}
|
|
|
|
var counter = makeCounter();
|
|
counter(); // "1".
|
|
counter(); // "2".
|