Skip to content

Instantly share code, notes, and snippets.

@TehilaFavourite
Created May 11, 2023 17:23
Show Gist options
  • Save TehilaFavourite/edd4d919e701ba18fc3d44ef13930263 to your computer and use it in GitHub Desktop.
Save TehilaFavourite/edd4d919e701ba18fc3d44ef13930263 to your computer and use it in GitHub Desktop.
pragma solidity ^0.8.0;
contract MyContract {
function foo(uint256 _x) public pure returns (uint256) {
return _x * 2;
}
function foo(uint256 _x, uint256 _y) public pure returns (uint256) {
return _x + _y;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment