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
pragma solidity ^0.4.23;
contract Mortal {
/* Define variable owner of the type address */
address owner;
uint256 x;
/* This constructor is executed at initialization and sets the owner of the contract */
constructor() public { owner = msg.sender; }
/* Function to recover the funds on the contract */
function testAssert(uint256 _x) public {
assert(_x > 10 );
x = _x;
}
}
The text was updated successfully, but these errors were encountered: