Skip to content

Instantly share code, notes, and snippets.

@sepisoltani
Created October 6, 2021 08:52
Show Gist options
  • Save sepisoltani/549815ef1552cc185575dcdfcafe9d45 to your computer and use it in GitHub Desktop.
Save sepisoltani/549815ef1552cc185575dcdfcafe9d45 to your computer and use it in GitHub Desktop.
contract Example{
string name = "sepehr";
function _multiply(uint a, uint b) private pure returns (uint) {
return a * b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment