Skip to content

Instantly share code, notes, and snippets.

@Scofield-Idehen
Last active July 28, 2022 14:33
Show Gist options
  • Save Scofield-Idehen/42250627e790fc2440719fc0bbfe7ba7 to your computer and use it in GitHub Desktop.
Save Scofield-Idehen/42250627e790fc2440719fc0bbfe7ba7 to your computer and use it in GitHub Desktop.
//SPDX-License-Identifier: MIT
pragma solidity ^0.8.0;
contract Food{
uint NewFunction;
function store(uint _NewFunction) public{
NewFunction = _NewFunction;
}
function retrieve()public view returns (uint){
return NewFunction;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment