You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// To complete this challenge, you have to create a state variable and initialised it with 10 and then you have to create a function returnStateVariable( ) which returns the value of the created state variable .
// In the same way you have to create a local variable and initialised it with 20 and then you have to create a function returnLocalVariable( ) which returns the value of the created local variable.
// You can do this :-)
contract CreateFunctions{
uint stateVariable =10;
function returnStateVariable() public view returns(uint){
return stateVariable;
}
function returnLocalVariable() public pure returns(uint) {