Skip to content

Instantly share code, notes, and snippets.

@panda850819
Created April 20, 2019 05:07
Show Gist options
  • Save panda850819/85961e0fce7915686b77153f7f77b882 to your computer and use it in GitHub Desktop.
Save panda850819/85961e0fce7915686b77153f7f77b882 to your computer and use it in GitHub Desktop.
Markdium-CryptoZombie
// 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;
Person[] people; // dynamic Array, we can keep adding to it
Person[] public people;
// Public Array
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment