Skip to content

Instantly share code, notes, and snippets.

@timsneath
Created January 30, 2021 20:39
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save timsneath/bbc38436e9f0056328b607de7c3bb805 to your computer and use it in GitHub Desktop.
Save timsneath/bbc38436e9f0056328b607de7c3bb805 to your computer and use it in GitHub Desktop.
void main() {
final list = [];
for (var i = 0; i < 1; i++) {
list.add(((i * 2) / 2).runtimeType);
}
final item = (((0 * 2) / 2).runtimeType);
print(list.first);
print(item);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment