Skip to content

Instantly share code, notes, and snippets.

@bulgakovk
Created May 3, 2018 14:31
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save bulgakovk/ef7d0c9c27095cb210886bc8c7321954 to your computer and use it in GitHub Desktop.
Save bulgakovk/ef7d0c9c27095cb210886bc8c7321954 to your computer and use it in GitHub Desktop.
contract Example {
mapping(uint => bool) public map;
function setValue(uint key, bool value) {
map[key] = value;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment