Created
October 5, 2021 09:07
-
-
Save sepisoltani/597618f74a4a95aa6670eb5feb75d732 to your computer and use it in GitHub Desktop.
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
contract Example{ | |
// Array with a fixed length of 2 elements: | |
uint[2] fixedArray; | |
// another fixed Array, can contain 5 strings: | |
string[5] stringArray; | |
// a dynamic Array - has no fixed size, can keep growing: | |
uint[] dynamicArray; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment