Skip to content

Instantly share code, notes, and snippets.

@hayeah
Created August 13, 2017 09:05
Show Gist options
  • Save hayeah/284101fa53c65d618d5edab2f5274f36 to your computer and use it in GitHub Desktop.
Save hayeah/284101fa53c65d618d5edab2f5274f36 to your computer and use it in GitHub Desktop.
solidity ^0.4.11;
contract C {
uint64[4] numbers;
function C() {
numbers[0] = 0x0;
numbers[1] = 0x1111;
numbers[2] = 0x2222;
numbers[3] = 0x3333;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment