Skip to content

Instantly share code, notes, and snippets.

@ilamanov
Last active April 11, 2022 10:29
Show Gist options
  • Select an option

  • Save ilamanov/3e4264eb56aa9d57628227b861c1af2c to your computer and use it in GitHub Desktop.

Select an option

Save ilamanov/3e4264eb56aa9d57628227b861c1af2c to your computer and use it in GitHub Desktop.
contract EthereumExample {
struct Author {
uint256 publications;
uint256 likes;
}
Author public author;
function publish() public {
author.publications += 1;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment