//Write your own contracts here. Currently compiles using solc v0.4.15+commit.bbb8e64f. pragma solidity =0.8.9; contract SimpleStore { function testGas1(uint a, uint b) { if (a == 1 && b == 2) { } } function testGas2(uint a, uint b) { bool isA = a > 0; bool isB = b > 0; if(isA && !isB){ } if(isB && !isA){ } if(isA && isB){ } } }
0.6.6