Skip to content

Instantly share code, notes, and snippets.

@Davidegloh
Created August 18, 2021 14:31
Show Gist options
  • Save Davidegloh/66800b06343c98c0fbf270a261860e7d to your computer and use it in GitHub Desktop.
Save Davidegloh/66800b06343c98c0fbf270a261860e7d to your computer and use it in GitHub Desktop.
[Setter Function - Solidity] #setterfunction
pragma solidity 0.7.5;
contract HelloWorld {
int number;
function getNumber() public view returns(int){
return number;
}
function setNumber(int _number) public {
number = _number;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment