Skip to content

Instantly share code, notes, and snippets.

@sepisoltani
Created October 5, 2021 09:07
Show Gist options
  • Save sepisoltani/597618f74a4a95aa6670eb5feb75d732 to your computer and use it in GitHub Desktop.
Save sepisoltani/597618f74a4a95aa6670eb5feb75d732 to your computer and use it in GitHub Desktop.
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