Created
December 11, 2020 13:18
-
-
Save smpnjn/b4a902226bd4b8ab197077e2af7039bf to your computer and use it in GitHub Desktop.
This file contains 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
// A tuple | |
const tuple = #["testing", "test"]; | |
// A record | |
const myRecord = #{ | |
someName: "hello", | |
anotherName: "goodbye", | |
myTuple: #["some", "array"] // Tuples can be put into records, since they are primitives | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment