Created with <3 with dartpad.dev.
Created
October 10, 2023 17:46
-
-
Save johnpryan/d267118450d1db59e6c37ab916a6977a to your computer and use it in GitHub Desktop.
lively-performance-3668
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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