Skip to content

Instantly share code, notes, and snippets.

@kwalrath
Last active June 9, 2020 17:29
Show Gist options
  • Save kwalrath/4ab019d53f93871d2fd96e493ba10eea to your computer and use it in GitHub Desktop.
Save kwalrath/4ab019d53f93871d2fd96e493ba10eea to your computer and use it in GitHub Desktop.
main() {
int anInt; // Declared but not initialized... yet.
anInt = 1; // Try commenting out this line.
print('The value of anInt is $anInt.');
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment