Skip to content

Instantly share code, notes, and snippets.

@wschae
Created February 4, 2021 07:16
Show Gist options
  • Save wschae/bac96cdf117451de37e8b0b98c845528 to your computer and use it in GitHub Desktop.
Save wschae/bac96cdf117451de37e8b0b98c845528 to your computer and use it in GitHub Desktop.
Integer Test
pragma solidity ^0.4.22;
contract IntegerTest {
function Sub(uint8 x, uint8 y) public pure returns(uint8) {
return x - y;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment