Skip to content

Instantly share code, notes, and snippets.

@johnpryan
Created October 10, 2023 17:46
Show Gist options
  • Save johnpryan/d267118450d1db59e6c37ab916a6977a to your computer and use it in GitHub Desktop.
Save johnpryan/d267118450d1db59e6c37ab916a6977a to your computer and use it in GitHub Desktop.
lively-performance-3668

lively-performance-3668

Created with <3 with dartpad.dev.

void main() {
var record = ("Hello", "World");
var record2 = ("Hello", "World");
print(record == record2);
print(record.hashCode);
print(record2.hashCode);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment