mirror of https://github.com/crytic/slither
parent
2a1d7d59c2
commit
0a19a5536f
@ -0,0 +1,9 @@ |
||||
pragma solidity ^0.8.0; |
||||
|
||||
contract SimpleStorage { |
||||
uint256 public value; |
||||
|
||||
function setValue(uint256 newValue) public { |
||||
value = newValue; |
||||
} |
||||
} |
Loading…
Reference in new issue