Skip to content

Instantly share code, notes, and snippets.

@Grohden
Last active July 14, 2020 18:18
Show Gist options
  • Save Grohden/24de5b79c41575d9c4ac81781d0b79bb to your computer and use it in GitHub Desktop.
Save Grohden/24de5b79c41575d9c4ac81781d0b79bb to your computer and use it in GitHub Desktop.
example of ignored side effects by tree shaking unused nodes in dart
String b() {
print("Hey, I'm a side effect, I'm gonna mess with your program!");
return "";
}
final a = b();
void main() {
// a; // Uncomment for a nice side effect!
print("Hello!");
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment