Skip to content

Instantly share code, notes, and snippets.

@dened
Last active October 29, 2021 03:34
Show Gist options
  • Save dened/3385fd713c1fffcd23057db44b9545c9 to your computer and use it in GitHub Desktop.
Save dened/3385fd713c1fffcd23057db44b9545c9 to your computer and use it in GitHub Desktop.
Замыкание
/// https://gist.github.com/dened/3385fd713c1fffcd23057db44b9545c9
/// https://dartpad.dev/3385fd713c1fffcd23057db44b9545c9
typedef Inc = int Function();
Inc intrementer() {
var i = 0;
return () {
i++;
return i;
};
}
void main() {
final increment = intrementer();
print('hello ${increment()}');
print('hello ${increment()}');
print('hello ${increment()}');
print('hello ${increment()}');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment