pragma solidity ^0.4.18; contract Types { uint i = 10; function decision_making() public view returns (bool) { if (i < 10) { return true; } else { return false; } } }
0.4.18