Skip to content

Instantly share code, notes, and snippets.

@Tomen
Created May 20, 2016 21:14
Show Gist options
  • Save Tomen/10748c13351d8e9036209f57301cb045 to your computer and use it in GitHub Desktop.
Save Tomen/10748c13351d8e9036209f57301cb045 to your computer and use it in GitHub Desktop.
main(List<String> args) {
List functions = [];
int value = 3;
functions.add(()=>print(value));
value = 4;
functions.add(()=>print(value));
for(var fn in functions){
fn();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment